ObjectList.OnDataBinding(EventArgs) Method

Definition

Raises the DataBinding event. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

protected:
 override void OnDataBinding(EventArgs ^ e);
protected override void OnDataBinding (EventArgs e);
override this.OnDataBinding : EventArgs -> unit
Protected Overrides Sub OnDataBinding (e As EventArgs)

Parameters

e
EventArgs

An EventArgs object that contains the event data.

Exceptions

the data source provided no data to bind to.

Remarks

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.

Applies to

See also