Select the events available for a gridview/datagrid
-
RowDataBound
-
ItemDataBound
-
RowClick
-
ItemClick
A,B
Correct answer
Explanation
RowDataBound is a GridView event that fires when each row is data-bound, allowing customization of row appearance or content. ItemDataBound is the equivalent event for the older DataGrid control. Both are valid events for their respective controls, though GridView is the modern ASP.NET control.