Ive got a gridview in asp.net webpage and the backcolor of the row is changed according to data in a specific cell, but the first row of the grid is not changing. Why is this? Here is the code i use to change the color:
protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
int StationStatus1 = Int32.Parse(GridView1.DataKeys[e.Row.RowIndex].Values[0].ToString());
foreach (GridViewRow row in GridView1.Rows)
{
switch (StationStatus1)
{
case 0:
case 3:
e.Row.BackColor = System.Drawing.Color.Red;
break;
case 12:
e.Row.BackColor = System.Drawing.Color.Blue;
break;
default:
e.Row.BackColor = System.Drawing.Color.White;
break;
Any help will be highly apreciated. Thanks