我想禁用绑定到该网格的按钮控件。我正在使用 btnTestMod.Enabled=false; 但它显示“System.NullReferenceException:对象引用未设置为对象的实例。” 请建议更正。
protected void gvRootModule_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
Button btnTestMod = ((Button)e.Row.FindControl("btnlessontest"));
}
}