我在模板字段中有一个带有SelectButton的Gridview。按下按钮后,我希望隐藏此按钮。我做了
LinkButton SLCT = (LinkButton)GridView01.SelectedRow.FindControl("ButtonSelect");
SLCT.Visible = false;
我尝试使用Row索引,Cell索引以多种不同的方式声明按钮。但它总是抛出以下异常:
System.NullReferenceException: Object reference not set to an instance of an object
指定控件的所有参数都是100%正确但错误始终相同。
有人吗? 马丁