I have a working aspx form that has dropdownlists that cause postbacks. During the postback, textboxes get populated with data to be entered into the SQL database (i.e. time the dropdown list was selected, customer number based upon customer name). All works fine with full form postback. I am trying to improve the user experience by placing the textboxes that get updated during the postback inside an AJAX Update Panel; to avoid the fill form postback. It works fine as far as finding the data to fill the textbox; however, when I insert the data using the FormView Insert link, all data gets inserted into the SQL database EXCEPT any textbox data that resides inside of an Update Panel. Is there a way to have my Update Panel work on the form AND properly insert the data inside them into the database?
Thanks