what is view state and its use
Answer Posted / namrata
In simple words........
(1)if you are not using viewstate: When a form is submitted
in ASP,all form values are cleared(get lost). For
example,If you submit a web form with lots of details and
the server comes back with an error.You will have to go
back to the form and correct the detail. Then You click the
back button to that same form, you will find that all form
values are CLEARED and you will have to start all over
again!
(2)if you are using viewstate: When a form is submitted in
ASP .NET, the form reappears in the browser window together
with all form values. This is because ASP .NET maintains
your ViewState. The ViewState indicates the status of the
page with all the values of controls on it when submitted
to the server.
| Is This Answer Correct ? | 13 Yes | 3 No |
Post New Answer View All Answers
How can you make sure that web api returns json data only?
How would you turn off cookies on one page of your website?
Write code to send e-mail from an asp.net application?
What is difference between asp.net and asp?
Define asp.net caching?
What is the difference between runtime version and version?
Why do we need asp.net?
How do I force the dispose method to be called automatically, as clients can forget to call dispose method?
How do I use a proxy server when invoking a web service?
How to create a db connection at one place/page so that we can use that connection for all pages/forms/windows.what r the steps ned to be performed if question not clear,let me know
Can the unique key be null?
What is ispostback property?
What is autopostback true?
What does passport and windows authentication mean in ASP.NET?
What are main return types supported in Web API?