我有一个gridview,我希望第三行和第六列坐标上存在的单元格作为文件image.jpg的背景。我怎样才能做到这一点?
答案 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;");
}
}
}