DataControlField.ViewState Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a dictionary of state information that allows you to save and restore the view state of a DataControlField object across multiple requests for the same page.
protected:
property System::Web::UI::StateBag ^ ViewState { System::Web::UI::StateBag ^ get(); };
protected System.Web.UI.StateBag ViewState { get; }
member this.ViewState : System.Web.UI.StateBag
Protected ReadOnly Property ViewState As StateBag
Property Value
An instance of StateBag that contains the DataControlField view-state information.
Remarks
A data control field's view state is the accumulation of all its property values. To preserve these values across HTTP requests, ASP.NET server controls use this property, which is an instance of the StateBag class, to store the property values. The values are then passed as a variable to an HTML hidden input element when subsequent requests are processed. For more information about saving server control view state, see ASP.NET View State Overview.
View state is enabled for all server controls by default, but there are circumstances when you will want to disable it. For more information, see ASP.NET Performance Overview.
For more information about dictionaries and how to use them, see Collections and Data Structures.