how to use button control out of update panel
how to use button control out of update panel and how we can use that button control so that we can handle the data inside update panel in asp.net.
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Pradeep ShetPosted Jul 8, 2014, 3:17 PM
For this you do the following can steps
1) Set the UpdateMode property of UpdatePanel to Conditional.
2) Add the Trigger Template in UpdatePanel
3) Within the asp:AsyncPostBackTrigger , set ControlId property as 'buttonid' and Event property is 'click'
That's it..I hope this will solve your issue.