What is ViewState and How it is managed,Its
Advantages/Benefits?

Answers were Sorted based on User's Feedback



What is ViewState and How it is managed,Its Advantages/Benefits?..

Answer / m.sivakumar

ViewState is a speacial object that ASP.NET uses to maintain
the state of page and all webcontrols/ServerControls within
it.

It is in this object preserves the states of various FROM
elements during Postbacks.
It is rendered to client(browser) as a Hidden
variable_VIEWSTATE under<form> tag.
we can also custom values to it.

Is This Answer Correct ?    20 Yes 1 No

What is ViewState and How it is managed,Its Advantages/Benefits?..

Answer / anitha

viewState is a speacial object that ASP.NET uses to maintain
the state of page and all webcontrols/ServerControls within
it.

Is This Answer Correct ?    6 Yes 4 No

What is ViewState and How it is managed,Its Advantages/Benefits?..

Answer / bhoj

is view state is used to persist the web control data across
the post backs.? the answer is NO , because the data of web
control is persisted because of the loadPostbackData() of
life cycle.
view state it will be enable in the OnInitComplete() of page
life cycle,or we can enable at any time of page life cycle
by calling the TrackViewStae() method.
view state is used to store the data at page level.
advantages: if the data is small, store it in view state by
doing this no need to call to database to get the details
but for large data page performance will decrease.

Is This Answer Correct ?    1 Yes 1 No

What is ViewState and How it is managed,Its Advantages/Benefits?..

Answer / kinjal panchal

View State:- The web is a sate less. In asp.net the sate of
the page maintain by Asp.net itself.In asp.net encrypted
values store in the hidden controls and this is maintain by
asp.net itself.

View state is managed by Asp.net itself.
if u wanna check then write "enableviewstate="flase"" in
.aspx page.

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More ASP.NET Interview Questions

What are the steps involved to fill a dataset?

0 Answers  


Who can consume WebAPI?

0 Answers  


How to migrate from sqlserver 2005 to sql server 2000 (every one know reverse process of that )

2 Answers   Cap Gemini,


what is silver light when will we use silver light,

0 Answers  


Which is faster viewbag or viewdata?

0 Answers  






Which color scheme in a Repeater control can you provide alternatively?

1 Answers   Siebel,


What are the differences between clr & cts?

0 Answers  


How many web config files can be created for an application?

0 Answers  


What are the features of asp.net mvc?

0 Answers  


What is the purpose of App_Code folder in ASP.NET? Why we this?

0 Answers   Sans Pareil IT Services,


How many types of session in ASP.NET

0 Answers   MCN Solutions,


what is service contract,operation contract?

2 Answers  


Categories