错误::类,结构或接口成员声明中的标记'='无效

时间:2010-09-22 05:55:45

标签: c# asp.net

尝试使用以下代码隐藏我的内容页面中的母版页面板

 Panel p = this.Master.FindControl("panel1") as Panel;  
 p.Visible = false; //Error is showing on this line

为什么会出现这个错误?

1 个答案:

答案 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;
    }
}