StateManagedCollection::IStateManager::SaveViewState Method
Saves the changes to the StateManagedCollection collection and each IStateManager object it contains since the time the page was posted back to the server.
Assembly: System.Web (in System.Web.dll)
Return Value
Type: System::ObjectThe object that contains the changes to the view state of the StateManagedCollection and the items it contains. If no view state is associated with the collection and its elements, this method returns nullptr.
Implements
IStateManager::SaveViewState()This method is used primarily by control developers.
View state is the accumulation of the values of a server control's properties. These values are automatically placed in the server control's ViewState property, which is an instance of the StateBag class. This property's value is then persisted to a string object after the save state stage of the server control life cycle. For more information, see ASP.NET Web Server Controls.
When view state is saved, this string object is returned to the client as a variable that is stored in an HTML hidden element (<input type="hidden">). When you author custom server controls, you can improve efficiency by overriding this method and modifying your server control's ViewState property. For more information, see ASP.NET Web Server Controls andASP.NET State Management Overview.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.