protected void MyGrid_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
Image img = (Image)e.Row.FindControl("Status");
int msgid;
int.TryParse(Convert.ToString(DataBinder.Eval(e.Row.DataItem, "MsgID")), out msgid);
string status = Convert.ToString(DataBinder.Eval(e.Row.DataItem, "MessageActive"));
if(status.Equals("No"))
{
e.Row.BackColor = Color.Red;
}
//Based on some condition I am assigning images to the row
if (value >= Toptarg)
{
img.ImageUrl = "Styles/Images/GreenBox.jpg";
img.ToolTip = "Met Top Target";
img.AlternateText = "Met Top Target";
}
else
{
img.ImageUrl = "Styles/Images/AmberBox.jpg";
img.ToolTip = "In Progress";
img.AlternateText = "In Progress";
}
}
}
我有一个gridView,它有一个名为MessageActive的列。在行数据绑定中,我得到了messageActive的值。如果messageActive值为“Yes”,则不需要进行任何更改。如果是'否'我想以红色显示特定行,如何在行数据绑定中设置行背景颜色
网格视图的一些属性
<RowStyle BackColor="White" />
<AlternatingRowStyle BackColor="MistyRose" />
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
<HeaderStyle BackColor="#696969" Font-Bold="True" ForeColor="White" />
命名空间 使用System.Web.UI.WebControls; 使用System.Drawing;
我收到此错误
'Image' is an ambiguous reference between 'System.Web.UI.WebControls.Image' and 'System.Drawing.Image'
Source Error:
Line 56: if (e.Row.RowType == DataControlRowType.DataRow)
Line 57: {
Line 58: Image img = (Image)e.Row.FindControl("Status");
Line 59: int msgid;
Line 60: int.TryParse(Convert.ToString(DataBinder.Eval(e.Row.DataItem, "MsgID")), out msgid);
答案 0 :(得分:1)
试试这个:
string status = Convert.ToString(DataBinder.Eval(e.Row.DataItem, "MessageActive"));
if (status == "No")
{
e.Row.BackColor = Drawing.Color.Red
}
答案 1 :(得分:1)
在您的方法中添加:
if(status.Equal("No"))
{
e.Row.BackColor = Color.Red; // or Color.FromName("#FF0000");
}
作为旁注,我会操纵PreRender
事件处理程序中的颜色或其他样式,而不是RowDataBound
...
编辑:您应该添加对.NET程序集System.Drawing的引用,因为默认情况下它不包含在ASP.NET Web项目模板中...
答案 2 :(得分:1)
您需要更改此行:
Image img = (Image)e.Row.FindControl("Status");
要明确地引用您想要的图像类,例如:
System.Web.UI.WebControls.Image img = (System.Web.UI.WebControls.Image)e.Row.FindControl("Status");
如果你想使用那个,可以去另一个班级。