我已经完成了复选框,因为我已将布尔变量视为网格视图中的网格视图在网格视图中自动显示复选框。它是vs2012中的更新,但vs2010。你已手动创建它。但我想要显示颜色按钮而不是复选框。
答案 0 :(得分:0)
您需要使用RowDataBound
gridview
事件,如下所示
protected void RowDataBound(Object sender, GridViewRowEventArgs e)
{
if(e.Row.RowType == DataControlRowType.DataRow)
{
//check for a particular value
// change the color of button after finding button in the row
}
}