DataGrid.OnItemDataBound Method
.NET Framework 3.0
Raises the ItemDataBound event. This allows you to provide a custom handler for the event.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
Use the OnItemDataBound method to provide a custom handler for the ItemDataBound event.
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.
Raising an event invokes the event handler through a delegate. For more information, see Raising an Event.
Notes to Inheritors: When overriding OnItemDataBound in a derived class, be sure to call the base class's OnItemDataBound method. For more information about handling events, see Consuming Events.Community Additions
ADD
Show: