对不起,糟糕的问题标题。有没有办法在一条线上做到这一点:
Button button = (Button)Gridview.Cells[0].FindControl("controlname");
button.Enabled = (some boolean);
例如,vb 中的直接广播将允许:
DirectCast(Gridview.Cells(0).FindControl("controlname"), Button).Enabled = (some boolean value)
还是需要在两条线上?
谢谢!