Purpose of EnableViewState property - ASP.NET

Explain the purpose of EnableViewState property.

- It allows the page to save the users input on a form across postbacks.
- It saves the server-side values for a given control into ViewState, 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 viewstate.
How to implement delegates in ASP.NET
ASP.NET - How to implement delegates in ASP.NET - Delegates provide the functionality behind events...
What are Classes? - .NET
.NET What are Classes? - Classes are the blueprints for objects....
What is Encapsulation? - .NET
.NET What is Encapsulation?- The data of an object should never be made available to other objects....
Post your comment