Just wanted to know when using updatepanels if the whole page will be posted back or just the controls inside the updatepanel.
thanks
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.
Using the UpdatePanel, the entire page is posted back (with the addition of a form value specifying that it is a partial page postback). Most of the page lifecycle still runs (PreRender is not, however, and render only renders the UpdatePanel and all children).
Only the UpdatePanel is rendered and sent back to the client, so it only modifies that portion of the page.