Hi friends,
I want to know that where is the View state Data stored?
Loading
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.
Jignesh TrivediPosted Feb 8, 2012, 10:34 PM
View state is simply text. It is an aggregate of values of controls on a page. It's a string that contains values of page controls hashed and encoded in some manner. The view state contains no information about the server or the client. It only comprises information about the page itself and its controls. It lives along with the page in the user's browser.
Please Refer,
http://msdn.microsoft.com/en-us/library/ms972976.aspx
http://www.w3schools.com/aspnet/aspnet_viewstate.asp
hope this help.
Satyapriya NayakPosted Feb 8, 2012, 10:30 PM
View state data is stored in one or more hidden fields as base64-encoded strings.
Thanks