ControlAdapter.LoadAdapterControlState(Object) Method

Definition

Loads adapter control state information that was saved by SaveAdapterControlState() during a previous request to the page where the control associated with this control adapter resides.

protected public:
 virtual void LoadAdapterControlState(System::Object ^ state);
protected internal virtual void LoadAdapterControlState (object state);
abstract member LoadAdapterControlState : obj -> unit
override this.LoadAdapterControlState : obj -> unit
Protected Friend Overridable Sub LoadAdapterControlState (state As Object)

Parameters

state
Object

An Object that contains the adapter's control state information as a StateBag.

Remarks

Control state is the essential state information needed even if view state is disabled. When an adapter needs to maintain its own control state information, it can override the LoadAdapterControlState and SaveAdapterControlState methods.

An adapter might need to maintain control state information when there are features that need to have state maintained across requests, independent from the state of the associated control. For example, a composite control consisting of a large textual display and a group of RadioButton controls might render as a single view on desktop computer browsers. On other browsers, it might split its rendering - one view for the textual display and the other for the radio button group. The adapter would need to maintain its own target-specific information about the currently active view.

The LoadAdapterControlState method is called immediately after the Control.LoadControlState method, in the LoadState lifecycle stage. The adapter control state is separate and in addition to the control state of the control.

Applies to

See also