RT!能否给个Demo看看?

解决方案 »

  1.   

    http://blog.csdn.net/Csdbfans/archive/2010/03/28/5425585.aspx
    简单明了。
      

  2.   


    protected void Button1_Click(object sender, EventArgs e)   
    {   
        Response.Write("<script>alert('Button1');</script>");

    protected void Button2_Click(object sender, EventArgs e)   
    {   
        Button1_Click(sender, e);   

      

  3.   

    我就是不知道,我才问的呀!我就是想问,
    事件A,事件B
    我在事件A关联了一个事件A的处理程序
    我想在关联的同时,连事件B一起被关联
    当事件B被触发时,执行事件A的处理程序(这个方法应该是被 事件A/B 被触发时各执行一次)