日期:2014-05-19  浏览次数:20474 次

为什么我的用户控件中的Page_Load 未被执行
原因可能是什么呢?

------解决方案--------------------
是asp1.1吗? 看看ascx中 private void InitializeComponent() { this.Load += new System.EventHandler(this.Page_Load); } 这句在不在?
------解决方案--------------------
你的Page_Load事件是从其他地方直接拷进来的吧??
this.Load += new System.EventHandler(this.Page_Load);
这个是个委托,它订阅Page_Load这个事件
如果Page_Load事件的方法是从其他地方拷进来,IDE不会自动生成此委托
当然也就不会执行此事件