Page.RequiresControlState(Control) 方法

定义

确定是否注册指定的 Control 对象以参与控件状态管理。

public:
 bool RequiresControlState(System::Web::UI::Control ^ control);
public bool RequiresControlState (System.Web.UI.Control control);
member this.RequiresControlState : System.Web.UI.Control -> bool
Public Function RequiresControlState (control As Control) As Boolean

参数

control
Control

用于检查控件状态要求的 Control

返回

Boolean

true 如果指定 Control 需要控制状态,则为 ;否则为 false

注解

控件状态是由 Web 服务器控件需要正常运行的关键视图状态数据构成的对象;它包含在与普通视图状态不同的对象中。

使用控件状态的自定义控件必须在保存控件状态之前调用 RegisterRequiresControlState 该方法。 使用该方法 RequiresControlState 检查在页面注册的控件(要求控件状态)。

适用于

另请参阅