Occurs when a data row is bound to data in a GridView control. Contained in the namespace System.Web.UI.WebControls
According to Microsoft Developer Network:
Detail of RowDataBound event
The RowDataBound event is raised when a data row (represented by a GridViewRow object) is bound to data in the GridView control. This enables you to provide an event-handling method that performs a custom routine, such as modifying the values of the data bound to the row, whenever this event occurs.
Syntax (C#)
public event GridViewRowEventHandler RowDataBound
See example here: