注意:我需要根据搜索请求更改不同的列。
问问题
168 次
1 回答
1
是的,您可以在GridView.RowDataBound
活动中做到这一点
像这样
protected void yourGridView_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Cells[0].BackColor = Color.Beige;
// 0 could be any valid cell index in your row
}
}
欲了解更多信息,请转到此处
于 2012-07-05T09:19:19.883 回答