Can we read the ViewState of .aspx page from its source view?

 Posted by Ddd on 2/18/2011 | Category: ASP.NET Interview questions | Views: 4578 | Points: 40
Answer:

ViewState is the mechanism through which a control maintains its data on postbacks.
It allows us to store data from the properties of controls(default) in a hidden
field known as _ViewState.
By default we cannot read the ViewState. data. It is base-64 encoded.
It coould be possible using suitable encryption/decryption techniques.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response