Repeater.EnsureDataBound Method

Definition

Verifies that the Repeater control requires data binding and that a valid data source control is specified before calling the DataBind() method.

protected:
 void EnsureDataBound();
protected void EnsureDataBound ();
member this.EnsureDataBound : unit -> unit
Protected Sub EnsureDataBound ()

Remarks

When you specify a value for the DataSourceID property, ASP.NET automatically binds the Repeater control to the specified data source control. When ASP.NET performs data binding for the Repeater control, it first calls the EnsureDataBound method to verify that the control has not already been data bound and that a valid data source control that implements the IDataSource interface is specified for its DataSourceID property. The EnsureDataBound method then calls the DataBind method.

Applies to

See also