what is view state?

Answers were Sorted based on User's Feedback



what is view state?..

Answer / surya narayana panda

ViewState is maintaing users state at Client Side.It
provides property to store retention value between multiple
webrequest.It stores value in html hidden field in web page.

Is This Answer Correct ?    6 Yes 0 No

what is view state?..

Answer / abhishek

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.

Is This Answer Correct ?    3 Yes 0 No

what is view state?..

Answer / sandeep

View State is a mechanism by which we can maintain the
state during the subsequent postback of same .aspx
page...means suppose we have a registration form to fill i
fill all the entries but some entries were wrong than wht
happen next i'll get only those value which was wrong means
i won't fill all the value again just fill the wrong value
only...

Is This Answer Correct ?    3 Yes 0 No

what is view state?..

Answer / baji

its used to store the value in client side

viewstate ["viewstatevariablename"] = .....;

Is This Answer Correct ?    3 Yes 0 No

what is view state?..

Answer / madhunathanv

Sorry,
in the above example of declaration and calling View state
Key Name Should the same but it was not so while declaring
the key name was "ViewStateVariableName" and while calling
the key name was "ViewStateVariable" which won't work if
so, it was by mistake,
ie..,when called name was changed..,
Cool:-)
Below is the Correct Format:

**********************'
ViewState Declared As:'
**********************'
ViewState["ViewStateVariableName"] = 1;
**********************************'
Above ViewState Can be called As: '
**********************************'
int number = (int) ViewState["ViewStateVariableName"];

AFAIK

Is This Answer Correct ?    2 Yes 0 No

what is view state?..

Answer / ranjith reddy

View State is going to store a value even though u refresh
the page.........

Is This Answer Correct ?    2 Yes 0 No

what is view state?..

Answer / mallikarjuna

Viewstate is stored in hidden input field and sent back to
the server with every post back.
veiwstate is a concept of maintaing the controls props.
adv:
redusing the manuel coding
it can not use persistant memory in client system or server
system.
dis adv:
more amount of data can be transfered between client and
web server
configaration :
we can figure viewstate at three levels
1.pagelevel
2.control level
3.application level
cl:<input.......... enableviewstate="true[d]/false">
pl:<%@page...........enableviewstate="tr true
[d]/false"%>
al:this is required configurationfile
<pages .......... enableviewstate="true
[d]/false>

Is This Answer Correct ?    1 Yes 0 No

what is view state?..

Answer / m.s.husain.razvi

every control maintain its view state in form hidden field
in server round trip by default each control maintain its
state in hidden field.By default it is true

Is This Answer Correct ?    1 Yes 1 No

what is view state?..

Answer / sujeet

If a site happens to not maintain a View State, then if a
user has entered some information in a large form with many
input fields and the page is refreshes, then the values
filled up in the form are lost...........

Is This Answer Correct ?    0 Yes 0 No

what is view state?..

Answer / madhunathanv

ViewState is confined only to the page cycle ,
When the Viewstate is declared in the particular Method in
the Page ,it can be called in other methods or Events when
it is in Need.
ie.., it persists its state across postbacks
**********************'
ViewState Declared As:'
**********************'
ViewState["ViewStateVariableName"] = 1;
**********************************'
Above ViewState Can be called As: '
**********************************'
int number = (int) ViewState["ViewStateVariable"];

AFAIK

Is This Answer Correct ?    1 Yes 2 No

Post New Answer

More ASP.NET Interview Questions

Explain a program using code nuggets to create a simple application? : asp.net mvc

0 Answers  


Difference between connected architecture and Dissconnected architecture?

2 Answers  


Name the validation control available in asp.net ?

1 Answers  


How do you handle unhandled exceptions in ASP.NET?.

3 Answers  


What are different types of api?

0 Answers  






What ASP.NET object encapsulates the state of the client and the browser? a) The Session object b) The Application object c) The Response object d) The Request object e) The Server object

7 Answers   Bunzl Vending, Syntax Softtech,


How to disable disable browser's Back button in asp.net (JavaScript)?

0 Answers   HCL,


What the use of Form Authentication and windows Authentication?

1 Answers   NetCity, TCS,


Can we make a class with class with same;suppose public class abc { public class abc { } }

1 Answers  


Explain the use of dataadapter.

0 Answers  


What are the steps to follow to host a web application on a web server?

0 Answers   MCN Solutions,


Clearly Explain the ispostback

6 Answers   TCS,


Categories