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 is immutability?
If you are executing these statements in commandobject. Select * from table1; select * from table2? How you will deal result set? 42. How do you sort a dataset.
Write code for fetch record nos 15 to 25 from a dataset containing 50 records?
What is strong name?
What is a DLL?
What is use of ContextUtil class?
How will u load dynamic assembly? How will create assemblies at run time?
Is .net is platform independent. If am using solaris, installing .net first u had to install framework, so framework is .exe file then it will not take in solaris or any other than windows,then how .net is platform independent.
What are the properties of ADO.NET?
What is Global Assembly Cache (GAC) and what is the Purpose of it?
Where does the gac exist ?
How to create multiple inheritance in c#, with example?