ConnectionsZone::LoadViewState Method (Object^)

 

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

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

protected:
virtual void LoadViewState(
	Object^ savedState
) override

Parameters

savedState
Type: System::Object^

An Object that contains the view state to be restored.

Exception Condition
ArgumentException

The length of savedState does not equal the length of the array created by the SaveViewState method.

This method is used primarily by the .NET Framework infrastructure and is not intended to be used directly from your code. However, control developers can override this method to specify how a custom server control restores its view state. For more information, see ASP.NET State Management Overview.

When this method is invoked, it determines whether view state was previously saved for the control and, if so, sets the view state to the saved value. The method overrides the LoadViewState method inherited from the ToolZone class, so that it can add to the base implementation and restore state for the several zone-level verbs used in the ConnectionsZone control.

.NET Framework
Available since 2.0
Return to top
Show: