- data
- The IEnumerable list of data returned from a DataBoundControl.PerformSelect method call.
Implement this method instead of the BaseDataBoundControl.DataBind method when you derive a data-bound control from the System.Web.UI.WebControls.DataBoundControl class. Placing your control's data-binding logic in DataBoundControl.PerformDataBinding(IEnumerable) enables you to avoid the System.Web.UI.Control.DataBinding and BaseDataBoundControl.DataBound events being raised in the wrong order.
While the base System.Web.UI.WebControls.DataBoundControl class provides no specific implementation for this method, the DataBoundControl.PerformDataBinding(IEnumerable) method is called by the DataBoundControl.PerformSelect method to bind the values of any user interface (UI) controls to the data that is retrieved by the DataBoundControl.PerformSelect method.