what is viewstate?
Answers were Sorted based on User's Feedback
Answer / monica jeevan
When a form is submitted in classic ASP, all form values
are cleared. Suppose you have submitted a form with a lot
of information and the server comes back with an error. You
will have to go back to the form and correct the
information. You click the back button, and what
happens.......ALL form values are CLEARED, and you will
have to start all over again! The site did not maintain
your ViewState.
When a form is submitted in ASP .NET, the form reappears in
the browser window together with all form values. How come?
This is because ASP .NET maintains your ViewState. The
ViewState indicates the status of the page when submitted
to the server. The status is defined through a hidden field
placed on each page with a <form runat="server"> control.
Maintaining the ViewState is the default setting for
ASP.NET Web Forms. If you want to NOT maintain the
ViewState, include the directive <%@ Page
EnableViewState="false" %> at the top of an .aspx page or
add the attribute EnableViewState="false" to any control.
| Is This Answer Correct ? | 17 Yes | 0 No |
What are object pooling and connection pooling and difference?
What?s a Windows process?
What is the Difference between directcast and ctype?
How to load the contents of an xml file into an xmldocument object?
How does the .NET framework work?
What is your observations between vb.net and vc#.net?
What is the root class in .net?
Can we share session between ASP.Net & ASP
3 Answers Accenture, Value Labs,
How to send the Mail in C# using ASP.Net ? And my Answer is as follows ?
How do I spawn a thread?
What's singlecall activation mode used for in .net?
Which Security Algorithm used to encrypt the data? a) DES b)RC2 c)Triple DES d)All the above