What is view state and how this can be done and was this
there in asp ?
Answer Posted / ranjans
View state is the method to preserve the values of the page and controls between the round trip. It is a Page Level state management technique. View state is turned on by default.
Key feature are: 1. Retails the value of the control after post-back without using sessions
2. Creates a custom view provider that lets you store View State information either in the page or on the client machine (SQL Database)
This is not there in ASP . ASP is a stateless web application. That means a new instance of a page is created every time when we make a request to the server to get the page and after the round trip our page has been lost immediately.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Describe SOA and the tenets of it?
What are sharepoint pages?
How does viewstate work?
How will you load dynamic assembly? How will create assesblies at run time?
Explain transparent caching with aop?
What are the new features added from ASP to ASP.NET?
Explain what does mvc represent in asp.net? : asp.net mvc
What is asp.net and ado net?
List down the sequence of methods called during the page load.
Mention the execution process for managed code?
How to make sure that contents of an updatepanel update only when a partial postback takes place (and not on a full postback)?
What is data reader in asp.net?
Is asp.net is a programming language?
i want to implement grid view value in paypal site. so how to create this code in asp.net with C#
Why do you use the app_code folder in asp.net?