点开region,看看InitializeComponent()里有没有这么这句
this.Load += new System.EventHandler(this.Page_Load);

解决方案 »

  1.   

    //Web Form Designer generated code中含有如下代码private void InitializeComponent()
    {    
    this.Load += new System.EventHandler(this.Page_Load);
    }
    有时会发生丢失现象,比如说Button的Click就经常会不知原因丢失,这时就需要补上或者双击要链接的按钮事件重新生成。
    不过象Load的事件倒是没发生丢失的现象,原因你再查查
      

  2.   

    同意hgknight(江雨.net) 、 csqok(csq) 的意见。我们写程序时遇到过这个问题,害提我们三个多小时跟踪不了不知道什么原因。