Question

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 :-|

Was it helpful?

Solution

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.

OTHER TIPS

You can get all of the values of any form control or controls you want in a Partial Postback. It is a trivial answer, but not intuitively obvious at first glance. Maybe that's why ASP.net is dead.

Remember that the parameters of

__doPostback(string controlId,string param)

are strings, and the ASP.net methods

Request.Params.Get("__EVENTTARGET"); // id
Request.Params.Get("__EVENTTARGET"); // parameter

return strings.

Therefore the simple answer is to

  1. Construct a javascript object with key values pairs of all your the form elements that you wish to send back in your partial.

  2. Stringify that object, and pass it as the second parameter of your __doPostBack call.

On the server side you simply reverse this process to extract your object and all the form values you care about.

For example :

var strigifiedObject = JSON.stringify(myFormObject);
var id = "partialPostback";
__doPostBack(id, strigifiedObject);

... meanwhile on the server side

string id = Request.Params.Get("__EVENTTARGET");
string param = Request.Params.Get("__EVENTARGUMENT");

if (id == "partialPostback") {
    List<MyObj> formVals = new JavaScriptSerializer().Deserialize<List<MyObj>>>(param);
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top