What does the "EnableViewState" property do? Why would I
want it on or off?

Answers were Sorted based on User's Feedback



What does the "EnableViewState" property do? Why would I want it on or off?..

Answer / ramgopal reddy

It enables the viewstate on the page. It allows the page to
save the users input on a form

Is This Answer Correct ?    9 Yes 2 No

What does the "EnableViewState" property do? Why would I want it on or off?..

Answer / deepali

It allows to Store Value in viewstate and Persist the
values across postbacks

Is This Answer Correct ?    8 Yes 1 No

What does the "EnableViewState" property do? Why would I want it on or off?..

Answer / maloy.adhikari

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 ?    4 Yes 1 No

What does the "EnableViewState" property do? Why would I want it on or off?..

Answer / sankar

when ever your page view state on it will take too much
responese time. that is why it is better to off the view
state if you do not require the controls to remeber its
previous state.

Is This Answer Correct ?    4 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

What is boxing and unboxing?

3 Answers   Patni,


Is it necessary to undertsand these events of an ASPX page execute. Explain its importantance?

2 Answers   HCL, Siebel,


How cross page posting is done in Asp.net 2.0?

3 Answers  


What Is ASPNET_WP.exe? What Is The Use Of It? In Which Place Inproc Session Stored ? Explain Session State ?

2 Answers   Phoenix Technologies,


Can i have both C# and vb.net code in same assembly?how?

5 Answers   Wipro,






which is best possible way to add data source to data grid when the data is huge(10 lack recored)how to edit a perticular row

3 Answers   Airtel, Aviva,


a)COM Callable Wrapper b)Runtime Callable Which one of the above is Win32 API in .Net?

0 Answers   CTS,


What are the features of asp net?

0 Answers  


Why would anyone need to implement their own hashtable or linked list?

0 Answers  


what is structured data format?

2 Answers  


What is skin in asp.net?

0 Answers  


Which is better union or union all?

0 Answers  


Categories