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 the caspol.exe tool used for?
Am not able to move the controls on the form freely in asp.net 3.5 even though I selected the position as relative or absolute for those controls. What should I do to overcome this?
How to automatically get the latest version of all the asp.net solution items from source safe when opening the solution?
Define managed code and managed data in .net?
What is the use of session in web application?
Explain how caching in asp.net 2.0 is different from caching in asp.net 1.1?
What would be salary for 8+ years of experience in ASP.NET in different metro city in india?
Hello, Using Visual Studio 2005 (VB) I am working to create a Web Site implementing the following: Within a gridView I have placed a dropdownlist control with a DataSourceID="SDSLkupList". SDSLkupList is a sqlDataSource used to store a lookup list for dropdownlist translation from ID to text. SDSLkupList contains the translation text and other fields related to the dropdown selection ID. (Thought it would be efficient to get everything at the same time.) I would like to provide the user the ability to select from the dropdownlist and, based on the selection, use labels to list related columns stored on the SDSLkupList in separate gridView columns. I have read that SqlDataSources are not meant to be used for individual controls. Since SDSLkupList contains all related information, is there a way to do a find using the dropdownlist selectedValue? (I was not able to discover one.) Otherwise, what should I use? It would need to set the labels on the gridView DataRowBound event as well as the SelectedIndexChanged events. Has anyone done this? Any help would be appreciated. Thanks in Advance. Neal
What does the hotspot class in .net do?
What is repository pattern in mvc.net? : asp.net mvc
Is there any alternative to avoid name collisions other then Namespaces?
What is the difference between session and viewstate in asp.net?
How to improve performance of web application asp.net mvc? : Asp.Net MVC
Can you explain page lifecycle in net?
Explain about the .NET framework?