尝试使用以下代码隐藏我的内容页面中的母版页面板
Panel p = this.Master.FindControl("panel1") as Panel;
p.Visible = false; //Error is showing on this line
为什么会出现这个错误?
答案 0 :(得分:5)
我怀疑你有这样的代码:
class MyPage : Page
{
Panel p = this.Master.FindControl("panel1") as Panel;
p.Visible = false;
}
你不能只把代码放在类中 - 除了声明之外的所有东西(例如字段)都需要在方法中:
class MyPage : Page
{
public void Page_Load(object sender, EventArgs e)
{
Panel p = this.Master.FindControl("panel1") as Panel;
p.Visible = false;
}
}