当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > 用ICallbackEventHandler实现客户端与服务器端异步

ASP.NET
用ASP/ASP.NET实现网络空间管理
ASP.NET程序中用Repeater实现分页
在ASP.NET中上传图片并生成缩略图的C#源码
Asp.net动态生成html页面
DataGrid同时具有分页和排序功能及注意点
建立自己的RSS
Asp.net中处理一个站点不同Web应用共享Session的问题
创建完全可编辑的 DataGrid
调试ASP.NET应用程序的方法和技巧
让你的.NET程序兼容不同版本的Dll文件
用ASP.NET实现简单的文字水印
ASP.NET中实现中文简/繁体自动转换的类
ASP.NET技巧:为Blog打造个性日历
ASP.NET中使用IFRAME建立类Modal窗口
WEB页面多语言支持解决方案
涉及网络编程时,需要用到的几个常用方法
2个页面间不通过Session与url的传值方式
ASPX中的用户控件与ASP中的INCLUDE方法对比
使用HttpWebRequest向网站模拟上传数据
在asp.net中操作sql server数据库的一些小技巧

ASP.NET 中的 用ICallbackEventHandler实现客户端与服务器端异步


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 78 ::
收藏到网摘: n/a

     页面代码:
  <script type="text/javascript">
   function ReceiveServerData(rValue)
   {
   alert(rValue);
   }
   </script>
  <input id="Button1" type="button" value="button" onclick ="CallServer('Client')" />
  服务端代码:
  public partial class back2 : System.Web.UI.Page,System .Web .UI .ICallbackEventHandler
  {
   public string CallBackValue = null;
   protected void Page_Load(object sender, EventArgs e)
   {
  
   }
   // 注册脚本到前台页面
   protected void Page_PreRender(object sender, EventArgs e)
   {
   RegClientScript();
   }
   // javascript函数(服务器端事件的客户端回调)
   protected void RegClientScript()
   {
   ClientScriptManager cs = Page.ClientScript;
   string jstxt=@"
   function CallServer(msgid)
   {
   " + cs.GetCallbackEventReference(this, "msgid", "ReceiveServerData", null) + @";
   }";
   cs.RegisterStartupScript(this.GetType(), "callserver", jstxt, true);
   }
   //ICallbackEventHandler接口
   //把值传到前台
   string ICallbackEventHandler.GetCallbackResult()
   {
   return CallBackValue + ",Server";
   }
  
   //按受前台的参数
   void ICallbackEventHandler.RaiseCallbackEvent(string eventArgument)
   {
   this.CallBackValue = eventArgument;
   }
  }
  http://www.cnblogs.com/chy710/archive/2006/12/26/604118.html