为什么 <input id="Button4" type="button" value="client" onclick="<%= this.Page.GetPostBackEventReference(this.Button1) %>" />这句中的<%= this.Page.GetPostBackEventReference(this.Button1) %>得到的是_postback("button1","")这个函数应用呢?getpostbackeventreference()的第一个参数不是指的服务器端处理该回调的控件吗?这个控间是怎么 实现ICallbackEventHandler 接口并提供 RaiseCallbackEvent 方法的啊??  
 
即就是<%= this.Page.GetPostBackEventReference(this.Button1) %>这一句得到的函数引用为什么是_dopostback("button1","")啊??