HtmlSelect.RequiresDataBinding 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置一个值,该值指示 HtmlSelect 控件是否需要绑定到其指定数据源。
protected:
property bool RequiresDataBinding { bool get(); void set(bool value); };
protected bool RequiresDataBinding { get; set; }
member this.RequiresDataBinding : bool with get, set
Protected Property RequiresDataBinding As Boolean
属性值
如果该控件需要绑定到数据源,则为 true
;否则为 false
。
注解
该 HtmlSelect 控件使用 RequiresDataBinding 属性来确定控件是否需要调用 DataBind 方法以绑定到其指定的数据源。
每次set
调用DataSourceIDDataSource访问器时,或DataMember属性在调用方法后OnInit更改数据源,ASP.NET 会自动将RequiresDataBinding属性值设置为 true
a0/>。 The value of the RequiresDataBinding property is also set to true
when the OnDataPropertyChanged method is invoked.
ASP.NET 自动将属性false
的值RequiresDataBinding设置为在调用方法后DataBind立即设置。