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
What is difference between viewstate and session in asp net?
What is new asp.net core?
Define xmlvalidatingreader class.
What is the function of the ViewState property?
What is .net framework and what are the main components of it?
What is asp.net caching?
how to implement some securty aspect in our application i.e 1.cookie poisioning. 2.data encryption. 3.forcefull browsing 4.sql/code injection 5.securing web app by using web services ........my question is how to implement these thing in our application is this done by hard coding or by help of some tool
Explain the differences between clr & cts?
Explain about secure socket layer?
Define data caching?
Explain about asp.net state management?
Where the cookie value is stored?
How many languages are supported by .NET at present time?
What are early binding and late binding.
What is the flow of processing of the request? : asp.net mvc