Control.OnDataBinding Method (EventArgs)
.NET Framework (current version)
Raises the DataBinding event.
Assembly: System.Web (in System.Web.dll)
This method notifies a server control to perform any logic for binding data that is associated with it.
If you want to handle the DataBinding event, you should override this event-handling method. This ensures that all delegates attached to the DataBinding event are invoked.
The following example demonstrates how to override the OnDataBinding method to add child controls to the parent control from a data source.
// Override to create the repeated items from the DataSource. protected override void OnDataBinding(EventArgs e) { base.OnDataBinding(e); if (DataSource != null) { // Clear any existing child controls. Controls.Clear(); // Clear any previous view state for the existing child controls. ClearChildViewState(); // Iterate over the DataSource, creating a new item for each data item. IEnumerator dataEnum = DataSource.GetEnumerator(); int i = 0; while(dataEnum.MoveNext()) { // Create an item. RepeaterItem item = new RepeaterItem(i, dataEnum.Current); // Initialize the item from the template. ItemTemplate.InstantiateIn(item); // Add the item to the ControlCollection. Controls.Add(item); i++; } // Prevent child controls from being created again. ChildControlsCreated = true; // Store the number of items created in view state for postback scenarios. ViewState["NumItems"] = i; } }
.NET Framework
Available since 1.1
Available since 1.1
Show: