vote up 0 vote down star

Can someone explain how UpdatePanel works ? What is uploaded when UpdatePanel make a postback ?

I know how to update partial content, but how about uploading only a part of the page ?

It's not about UploadFile control, it's about postback upload.
Are all controls from the page send through postback on UploadPanel postback ?

flag

"uploading only a part of the page": uploading or updating? – balexandre Jun 8 at 15:07
My question is about what is uploaded ? (send on server through postback) when UpdatePanel is triggered. – pixel3cs Jun 8 at 15:27

2 Answers

vote up 1 vote down check

When an update panel is refreshed on the client, the POST request sends back the same data that would occur for a normal postback. On the server the request will run through it's normal lifecycle with the difference that render will only be called on controls that are children of update panels that are being updated during this request. This partial html is sent back to the client where the AJAX library will insert the new html into the client side elements that represent the update panel.

link|flag
I was afraid by an answer like this.<br/> It seems that I was right, entire page is postback, the server see this like a normal postback. – pixel3cs Jun 9 at 7:54
vote up 0 vote down

If the postback originates from within your UpdatePanel and your UpdatePanel is set to allow PartialRendering, the content within the UpdatePanel is what is sent/received UNLESS you specify a postback control in the PostBackTrigger collection. In this case a full postback is triggered and your enter page will postback.

I hope this clears things up a bit, JP

EDIT: For clarity and conciseness.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.