Control.DataBind Method (Boolean)
Binds a data source to the invoked server control and all its child controls with an option to raise the DataBinding event.
Assembly: System.Web (in System.Web.dll)
abstract DataBind : raiseOnDataBinding:bool -> unit override DataBind : raiseOnDataBinding:bool -> unit
Parameters
- raiseOnDataBinding
-
Type:
System.Boolean
true if the DataBinding event is raised; otherwise, false.
Use the Control.DataBind(Boolean) method in a scenario when your custom control overrides the DataBind method and implements the IDataItemContainer interface. In this scenario, the custom control calls the Control.DataBind(Boolean) method with raiseOnDataBinding set to false to ensure that the base class's DataBind method gets called.
The Control.DataBind() method invokes the Control.DataBind(Boolean) method with raiseOnDataBinding set to true.
Note |
|---|
Calling the Control.DataBind(Boolean) method with raiseOnDataBinding set to false causes any child controls to be data bound with the Control.DataBind() method. |
Available since 2.0
