Answer Posted / deepak bajpai
In ASP.NET pages, the view state represents the state of
the page when it was last processed on the server. It's
used to build a call context and retain values across two
successive requests for the same page. By default, the
state is persisted on the client using a hidden field added
to the page and is restored on the server before the page
request is processed. The view state travels back and forth
with the page itself, but does not represent or contain any
information that's relevant to client-side page display. In
this column, I'll take a tour of the view state
implementation in ASP.NET and show how to keep your Web
pages fit and trim and a bit more secure.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is special types forms
What is considered a service provider?
Define web services in asp.net.
How does output caching work in ASP.NET?
Can I recieve both html markup for page and code in the asp.net web page's source code portion in the web browser?
Describe paging in asp.net?
What are the server controls in asp.net?
Any disadvantages in Dataset and in reflection ?
Explain what the contents of cookie?
In which situation can you not use a viewstate?
How dataadapter.fill works?
How can we make sure that Web API returns JSON data only?
Explain culture and uiculture values.
What is the request flow used for asp.net mvc framework? : asp.net mvc
How do we implement bundling in MVC?