Answer Posted / 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 |
Post New Answer View All Answers
what user controls are and what server controls are and the differences between the two.
What's wrong with a line like this? Datetime.parse(mystring);
What versions of .net are there?
How to load a user control dynamically in runtime?
Explain the difference between garbage collections in .net 4.0 and earlier versions?
What's the use of system.diagnostics.process class in .net?
Tell about your technical profile ?
What is the difference between reference type and value type?
What are the namespace available in .net?
What are the advantages of .net core?
hai, about trading domain and need simple project on trading system. please help me...
Explain the use of activex control in .net?
How does the generational garbage collector in the .net clr manage object lifetime? What is non-deterministic finalization?
How to load the contents of an xml file into an xmldocument object?
What is .net3.5?