Page.UnregisterRequiresControlState Method
.NET Framework 3.0
Stops persistence of control state for the specified control.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public void UnregisterRequiresControlState ( Control control )
public function UnregisterRequiresControlState ( control : Control )
Not applicable.
Parameters
- control
The Control for which to stop persistence of control state.
Custom server controls that use control state must call the RegisterRequiresControlState on each request during before the state is persisted. Registration for control state is not carried over from request to request during a postback. Use the UnregisterRequiresControlState method to ensure that control state is not persisted for controls that no longer need to be persisted for postback.
Internally, the UnregisterRequiresControlState method is invoked when using the RemovedControl method to remove a control from a controls collection.
Community Additions
ADD
Show: