我想在后台经过判断,去掉页面上某些空间的绑定时间  如 ItemDataBound 事件,提高访问速度 ,求解 

解决方案 »

  1.   

    -=
    xxx.Elapsed += new xxxx(xxx);//添加事件
    xxx.Elapsed -= new xxxx(xxx);//移除事件
      

  2.   

    例如
    this.button1.Click += new System.EventHandler(this.button1_Click);//添加按钮点击事件
    this.button1.Click -= new System.EventHandler(this.button1_Click);//移除事件
      

  3.   

     this.shoplist.ItemDataBound -= new System.EventHandler(this.shoplist_ItemDataBound); 
    提示  错误 69 “shoplist_ItemDataBound”的重载均与委托“System.EventHandler”不匹配