Читати англійською Редагувати

Поділитися через


BaseDataList.EnsureDataBound Method

Definition

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

C#
protected void EnsureDataBound();

Remarks

When you specify a value for the DataSourceID property, ASP.NET automatically binds the data listing control to the specified data source control. When ASP.NET performs data binding for the control, it calls the EnsureDataBound method first to verify that the control has not already been bound to data 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

Продукт Версії
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also