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
How will you load an assembly which is not referenced by current assembly?
How can I get at the win32 api from a .net program?
Using activex control in .net?
Please explain what is reflection and what is it for?
What are the properties of ADO.NET?
How do you view the methods and members of a dll?
Please explain what are an object and a class?
In code behind class, name the type of code found. Is it the server side code or client side code?
Describe the Managed Execution Process
Explain what is a delegate?
Explain what is an anonymous method and how is it different from a lambda expression?
Explain what is immutability, what is it for and how is it codified?
How will you load dynamic assembly? How will create assemblies at run time?
What is the difference between .net 2000 and .net 2005(features)? Which one is better?
How to produce an assembly?