Any help will be appreciaded.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use the Triggers property of the UpdatePanel to register actions that trigger a full postback. Add a PostBackTrigger object to that property, containig the ControlID of the control which needs to trigger a full postback.
|
|||
|
|
Just adding this because nobody else has. It is possible to do this in code-behind in one line of code without any of the above methods. Just put this in page_load:
|
|||||||||
|
|
From here: Use the PostBackTrigger control to enable controls inside an UpdatePanel to cause a postback instead of performing an asynchronous postback.
|
|||||
|
|
See link below http://asimsajjad.blogspot.com/2009/04/calling-dopostback-function-for-aspnet.html hope that will help. |
|||
|
|
