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 are the differences between an interface and an abstract class in .net?
Explain what is heap and what is stack?
What is an interface and what is an abstract class? Please, expand by examples of using both. Explain why?
If I am writing in a language like vb or c++, what are the procedures to be followed to support .net?
What is singlecall activation mode used for in .net?
What are the new 2.0 features useful for?
What does .net stand for?
Explain the features that are common to all .Net languages.
What is the use of UML in .Net
How do I use the thread pool?
Explain the difference between asp.net and asp?
One user deleted one row after that another user through his dataset was trying to update same row. What will happen? How will you avoid this problem?
Define code access security (cas)?
What are the namespace available in .net?
What is the procedure to add assemly to gac to make it shared one?