-1

hey guys im stuck on this. Just trying to change the row colour based on cell text value. this is what i have at the moment

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
    {
        if (e.Row.RowType == DataControlRowType.DataRow)
        {
                    string value = Convert.ToString(DataBinder.Eval(e.Row.DataItem,"Field1"));

                    if (value == "Complete")
                    {
                        e.Row.BackColor = System.Drawing.Color.FromName("#c6efce");
                    }
                }
            }
        }
    }
4

1 回答 1

0

Color.FromName方法需要一个颜色名称,并且您正在传递十六进制颜色值,将其替换为:

using System.Drawing;
...  
e.Row.BackColor = Color.FromArgb(Convert.ToInt32("c6efce", 16));

或者

e.Row.BackColor = ColorTranslator.FromHtml("#c6efce");
于 2012-05-28T12:11:46.377 回答