Where is the View state Data stored?

Questions by richy_dhivya

Showing Answers 1 - 9 of 9 Answers

Gaurav Kumar Singh

  • Aug 31st, 2007
 

View State data is stored in a hidden field on a Web page. and it is loaded before the page load event.

  Was this answer useful?  Yes

ynvpavan

  • Oct 1st, 2008
 

ViewState data is stored in the hidden field. When the page is submitted to the server, the data is sent to the server in the form of hidden fields for each control. If th viewstate of the control is enable true, te value is retained on the post back to the client when the page is post backed.

  Was this answer useful?  Yes

kirangiet

  • Oct 20th, 2009
 

View State data is stored in Hidden Field. This is fine as far as small amount of data is stored. What will happen if I want to store large chunk of data (I know View state is not preferred in such scenario, just let us assume). In that case multiple hidden field controls will be created automatically to accommodate the data.

Note: View state data will be serialized to a base-64 encoded string before stored in Hidden Field.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions