Control::LoadControlState Method (Object^)

 

Restores control-state information from a previous page request that was saved by the SaveControlState method.

Namespace:   System.Web.UI
Assembly:  System.Web (in System.Web.dll)

public protected:
virtual void LoadControlState(
	Object^ savedState
)

Parameters

savedState
Type: System::Object^

An Object that represents the control state to be restored.

Override this method when you need to specify how a custom server control restores its control state. For more information, see ASP.NET State Management Overview.

The following code example overrides the LoadControlState method in a custom ASP.NET control. When this method is invoked, it determines whether control state was previously saved for the control and, if so, sets the internal property currentIndex to the saved value.

The OnInit method is overridden to call the RegisterRequiresControlState method on the Page to indicate that the custom control uses control state.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: