在datagrid中的摸板列有一个button, 请问在datagrid绑定数据的时候,怎样依据某一项的值控制button的Enabled属性啊?
比如说有一列是"状态",当"状态"="故障"时,button的enabled为true,否则为false.
哪位大侠帮帮忙呀?
可以写在
protected void datagrid1_RowDataBound(object sender, GridViewRowEventArgs e)
try
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
if (Convert.ToInt32(e.Row.Cells[8].Text.ToString().Trim()) > 0)
{
e.Row.Cells[1].ForeColor = Color.Red; }
}
}
catch
{ }
你可以看看这个代码 可能对了有帮助
对了你要获得模板的button要用这个函数e.Row.FindControl()