DataGrid.ItemDataBound Event
.NET Framework 3.0
Occurs after an item is data bound to the DataGrid control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: event DataGridItemEventHandler^ ItemDataBound { void add (DataGridItemEventHandler^ value); void remove (DataGridItemEventHandler^ value); }
/** @event */ public void add_ItemDataBound (DataGridItemEventHandler value) /** @event */ public void remove_ItemDataBound (DataGridItemEventHandler value)
In JScript, you can handle the events defined by a class, but you cannot define your own.
Not applicable.
The ItemDataBound event is raised after an item is data bound to the DataGrid control. This event provides you with the last opportunity to access the data item before it is displayed on the client. After this event is raised, the data item is nulled out and no longer available.
For more information about handling events, see Consuming Events.
Community Additions
ADD
Show: