ControlAdapter.SaveAdapterControlState Method

Definition

Saves control state information for the control adapter.

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

Returns

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 SaveAdapterControlState and LoadAdapterControlState 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 SaveAdapterControlState method is called immediately after the Control.SaveControlState method in the SaveState lifecycle stage. The adapter control state is separate and in addition to the control state of the control.

Applies to

See also