Multiple choice technology programming languages

Select the events available for a gridview/datagrid

  1. RowDataBound

  2. ItemDataBound

  3. RowClick

  4. ItemClick

Reveal answer Fill a bubble to check yourself
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.