what is view state
Answers were Sorted based on User's Feedback
Answer / prameela
ViewState in Asp.net is used to save data to access across
postbacks.If the information is to be shared across
different controls, it can be placed in the view state of
the page, if it is to be accessed within the scope of a
single control, then it can be placed within the view state
of the control
| Is This Answer Correct ? | 11 Yes | 5 No |
Answer / somnath
using view state we can maintain a value in our page scope.
and this value use in pay page of our website.viwe state
maintain one session at the page destroyed.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sathya
View state is the method that the ASP.NET page framework
uses to preserve page and control values between round
trips. When the HTML markup for the page is rendered, the
current state of the page and values that must be retained
during postback are serialized into base64-encoded strings.
This information is then put into the view state hidden
field or fields.
| Is This Answer Correct ? | 2 Yes | 4 No |
Can you explain the page life cycle of mvc?
What is the version number for the next version of the .net framework, codenamed �orcas�?
What is MSIL, IL, CTS and, CLR
what is complex type?
What are the methods in Thread class?
What are the components required to create a route in ASP.Net MVC?
what is the additional features in 1.1 rather than 1.0
Can a view be shared across multiple controllers? If yes, how we can do that?
Hello guyz, I have interview scheduled next week on .Net Framework 1.1? Can any one please provide a) list of interview questions on .net frame work 1.1? b)basic differences between .net framework 1.1 and 2.0 and 3.5 c)the topics that i need to concentrate while preparing Thanks in advance
how do you query in entity model when the result has a join from from different database other than the entity model?
what are partial classes?
12 Answers Digimaker, HP, N Tech, TCS,
How we can handle the exception at controller level in ASP.Net MVC?