I have a gridview button that I programmatically created and I want to load an update panel on the client side with the sent data. I have a hidden value field that gets its data on the click of the gridview button and the dropdownlist in my updatepanel depends on that value.
|
|
|
|
|
|
|
we use the __dopostback() method which simulates a postback and causes the updatepanel to refresh
Don't forget that the control name is it's HTML ID (which may well contain dollars etc) and not just it's ASP.NET ID. As far as I know you can either call this method and pass in the hidden value field, or the div that it is in. |
||||
|
|
|
while calling A better solution is to use |
||||||
|
|
|
The easiest way to do this is to call __doPostBack from client side. On client side button1_onclick method, calls:
On page behind add the following event handler to capture the post back call:
And of course don't forget to wire event to the above method:
|
||
|
|
