Gridview条件格式化单元格

时间:2013-05-29 13:42:56

标签: c# asp.net gridview

我有一个gridview,我希望第三行和第六列坐标上存在的单元格作为文件image.jpg的背景。我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

希望这会有所帮助....

protected void GridView1_RowDataBound(object sender, GridViewRowEventArgs e)
{
    if(e.Row.RowType == DataControlRowType.DataRow)
  {
 if(e.Row.Index=1) //Check your Row index 
  {
      e.Row.Cells[YOur column index].Attributes.Add("Style", "background: url(../Images/nc.png) no-repeat 5px center;");
  }
 }
}