When the update panel is refreshed then which event of the update panel is fired on the server side?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The UpdatePanel control from the Ajax Control Toolkit is more of a container control.
It is a container that frees you from writing the plumbing for asynchronous ajax calls.
What that means is that this you will put your regular controls like buttons / dropdownlists etc that you want within this UpdatePanel Control.
If, for example, you want the button click to fire a server side event and do some processing, you will associate the button click event for the button just like you normally would in asp.net.
Because of the button being within the UpdatePanel (and provided the ChildrenAsTriggers / UpdateMode properties are set correctly) it is the buttons “OnClick” event that will be fired on the server side when you click the button.