0
Posted on 4:32 PM by Softminer and filed under

  1.     protected void gvNews_OnRowCreated(object sender, GridViewRowEventArgs e)

  2.     {

  3.         if (e.Row.RowType == DataControlRowType.DataRow)

  4.         {

  5.             if (e.Row.RowState == DataControlRowState.Alternate)

  6.             {

  7.                 e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#FFFFE1';");

  8.                 e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#f7fff8';");

  9.             }

  10.             else

  11.             {

  12.                 e.Row.Attributes.Add("onmouseover", "this.style.backgroundColor='#FFFFE1';");

  13.                 e.Row.Attributes.Add("onmouseout", "this.style.backgroundColor='#eefef0';");

  14.             }

  15.         }

  16.     }

0
Responses to ... Chnage Gridview back color in ASP.NET