我有一个gridview,我希望存在于第3行和第6列坐标上的单元格将文件image.jpg作为背景。我怎样才能做到这一点?
问问题
806 次
1 回答
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;");
}
}
}
于 2013-05-29T13:52:01.587 回答