what is viewstate?

Answers were Sorted based on User's Feedback



what is viewstate?..

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 viewstate?..

Answer / shubh

Data in encrypted form..

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net General Interview Questions

what is the keyword used for self reference?

0 Answers  


Can I write il programs directly?

0 Answers  


What are Sessions?

2 Answers   Deloitte,


When would you use .NET Remoting and when Web services?

1 Answers   Rolta,


Explain how to spawn a thread?

0 Answers  






How can you see which services are running on a Windows box?

1 Answers  


How ASP .NET different from ASP?

4 Answers  


Is .net is a language?

0 Answers  


Explain the difference between managed and unmanaged code?

0 Answers  


Please explain what inheritance is, and why it's important?

0 Answers  


What is the difference between server.transfer and response.redirect? Why?

0 Answers  


What is COM Interoperability in .NET

0 Answers  


Categories