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

Garbage collector thread is what kind of a thread?

1 Answers  


What is RPC? What is the use of it?

0 Answers   Accenture,


What is value type and refernce type in .net?

0 Answers  


What is deferred execution vs. Immediate execution in linq?

0 Answers  


What is .net environment?

0 Answers  






Which is the main Difference Between .Net 2003 and .Net 2005?

1 Answers  


Explain security measures exist for .net remoting in system.runtime.remoting?

0 Answers  


I have a problem in installing visual Studio 2008 on PC that have Celeron Processor ? afterAll InstallionFaied . Pls suggest me . Is it possible or not .if Yes then How ?

0 Answers  


Explain the difference between asp.net & vb.net and explain architecture?

0 Answers  


What is serialization in .NET? What are the ways to control serialization?

1 Answers  


What are server controls?

1 Answers   Avanade, Wipro,


Describe the use of following com+ services jit activation, queued components, object pooling.?

0 Answers  


Categories