Friday 12 December 2014

ViewState in ASP.NET

What is ViewState in ASP.NET ?

       ViewState is one technique asp.net uses to enable the postback model. The state for all controls that are marked runat="server" is stored in this base64 string. ViewState's not encrypted as default, using base64 encoding. You may want to use viewstate if your page has an action with controls.

To know about details in view state Click below link :  :)

 www.codeproject.com/Articles/31344/Beginner-s-Guide-To-View-State