SqlDataSourceView.SaveViewState Method

Saves the changes to the view state for the SqlDataSourceView control since the time that the page was posted back to the server.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

protected:
virtual Object^ SaveViewState ()
protected Object SaveViewState ()
protected function SaveViewState () : Object
Not applicable.

Return Value

The object that contains the changes to the SqlDataSourceView view state; otherwise, a null reference (Nothing in Visual Basic), if there is no view state associated with the object.

The SaveViewState method is primarily used by control developers.

View state is the accumulation of the values of the properties for a server control. These values are automatically placed in the ViewState property for the server control, which is an instance of the StateBag class. The ViewState value for the server control is then persisted to a string object after the save state stage of the server control life cycle.

When view state is saved, the string object that was persisted after the save state stage of the server control life cycle is returned to the client as a variable that is stored in an HTML Hidden element. When you author custom server controls, you can improve efficiency by overriding the SaveViewState method and modifying the ViewState property for your server control. For more information, see ASP.NET State Management Overview.

Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.

.NET Framework

Supported in: 3.0, 2.0

Community Additions

ADD
Show: