I'm inserting some non-server controls (plain html controls) dynamically into an update panel using jQuery.
If I do a full postback, I can get the values of those controls using Request.Form, however if I do a partial postback, I cannot.
Should I be able to get the values of html controls during a partial postback? Or only controls with runat="server"?
I am using non server controls as I'm playing around with facebox and file upload controls... it's not pretty :-|
update panel is not an efficient way of doing async.
As you're already using jQuery, add a web service (.asmx) to you project and hit that. See near figure 4 of this article: http://msdn.microsoft.com/en-us/magazine/cc163413.aspx
Request.Form is built from the viewstate, which your controls won't have been added to.