I have multiple textboxes on a webform containing data from SQL Server. Each textbox has AutoPostBack=True, and each textbox also has a TextChanged event which updates SQL Server whenever users input data.
My users dislike the fact that the page postsback after each & every textbox modification. This webform also contains several button controls which Response.Redirect the users to other pages within the application. I've tried to program logic into these buttons' click events to check for changes in the textboxes before redirection, and if changes exist, update SQL Server. However, if a user makes updates and then just closes their webbrowser, all is lost.
Is there a way that I can program one routine within this webform to take care of all textbox changes without having to postback after each change? Thanks.
--
Regards,
Mike
My users dislike the fact that the page postsback after each & every textbox modification. This webform also contains several button controls which Response.Redirect the users to other pages within the application. I've tried to program logic into these buttons' click events to check for changes in the textboxes before redirection, and if changes exist, update SQL Server. However, if a user makes updates and then just closes their webbrowser, all is lost.
Is there a way that I can program one routine within this webform to take care of all textbox changes without having to postback after each change? Thanks.
--
Regards,
Mike