Page.UnregisterRequiresControlState(Control) 方法

定义

停止指定控件的控件状态的持久性。

public:
 void UnregisterRequiresControlState(System::Web::UI::Control ^ control);
public void UnregisterRequiresControlState (System.Web.UI.Control control);
member this.UnregisterRequiresControlState : System.Web.UI.Control -> unit
Public Sub UnregisterRequiresControlState (control As Control)

参数

control
Control

要停止其控件状态的持久性的 Control

例外

注解

在保留状态之前,使用控件状态的自定义服务器控件必须在每个请求中调用 RegisterRequiresControlState 。 在回发期间,控制状态的注册不会从请求转为一个请求。 UnregisterRequiresControlState使用 方法可确保不再需要保留用于回发的控件不会保留控件状态。

在内部, UnregisterRequiresControlState 使用 RemovedControl 方法从控件集合中删除控件时调用 方法。

适用于

另请参阅