What does the “EnableViewState” property do? Why would I want it on or off?
By admin on Jan 5, 2007 in ASP.NET Interview Questions, Technical
It allows the page to save the users input on a form across post backs. It saves the server-side values for a given control into View State, which is stored as a hidden value on the page before sending the page to the clients browser. When the page is posted back to the server the server control is recreated with the state stored in view state.


