ConnectionsZone.LoadViewState(Object) Method

Definition

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

protected:
 override void LoadViewState(System::Object ^ savedState);
protected override void LoadViewState (object savedState);
override this.LoadViewState : obj -> unit
Protected Overrides Sub LoadViewState (savedState As Object)

Parameters

savedState
Object

An Object that contains the view state to be restored.

Exceptions

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

Remarks

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.

Applies to

See also