本文介绍了GridView更改网格行的颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想根据行单元格的值更改gridview的行颜色.
I want to change the color of rows for the gridview based on the rows cell values.
推荐答案
protected void Gridview1_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if ((e.Row.DataItem("Status").ToString() == "No"))
{
e.Row.BackColor = System.Drawing.Drawing.Color.Red;
}
else if ((e.Row.DataItem("Status").ToString() == "Yes"))
{
e.Row.BackColor = System.Drawing.Drawing.Color.Green;
}
}
}
这篇关于GridView更改网格行的颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!