I need a hand.
How to change background color of a entire Row on dataBound Event Programatically in a gridview ?
protected void databound_gridview(object sender, GridViewRowEventArgs e)
{
}
On top of my head you'll need to create a RowDataBound Event and then you can do something like
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowIndex == 1)
{
e.Row.BackColor = Color.Red;
}
}