HtmlSelect.RequiresDataBinding Property
.NET Framework 3.0
Gets or sets a value indicating whether the HtmlSelect control needs to bind to its specified data source.
Namespace: System.Web.UI.HtmlControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
/** @property */ protected boolean get_RequiresDataBinding () /** @property */ protected void set_RequiresDataBinding (boolean value)
protected function get RequiresDataBinding () : boolean protected function set RequiresDataBinding (value : boolean)
Not applicable.
Property Value
true if the control needs to bind to a data source; otherwise, false.The HtmlSelect control uses the RequiresDataBinding property to determine whether the control needs to call the DataBind method to bind to its specified data source.
Each time the set accessor is called on either the DataSource, DataSourceID, or DataMember property to change the data source after the OnInit method has already been called, ASP.NET automatically sets the value of the RequiresDataBinding property to true. The value of the RequiresDataBinding property is also set to true when the OnDataPropertyChanged method is invoked.
ASP.NET automatically sets the value of the RequiresDataBinding property to false immediately after the DataBind method has been called.
Community Additions
ADD
Show: