Reputation: 7877
This is very basic question but still not solve from my end. I got a nice link Update Panel. and come to know there are so many overheads while using update panel. Instead of that use page method. My question pointers are as below.
I am expecting only the theoretical answers to clear the concept.
Upvotes: 0
Views: 352
Reputation: 18008
Short answers:
All input fields on the aspx page will be submitted along
with the whole ViewState
(and few more hidden fields). You can see what is being
transferred by pressing F12 (in chrome, or in firefox if firebug is
installed) and selecting the network tab.
All controls inside the updatepanel along with the ViewState
will be
updated/refreshed.
The request is asynchronous. Response will be captured by the
javascript (plugged in via ScriptManager
) and it will modify the
DOM structure (of associating updatepanel portion) to reflect the
update; so you will not see the loading icon on the browser tab.
Upvotes: 1