All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
全面解读垂直搜索引擎_php资料_编程技术
PHP技巧:PHP中几种删除目录的三种方法_[PHP教程]
利用自定义分页技术提高数据库性能_[Asp.Net教程]
如何在十天内学会php之第一天_[PHP教程]
利用PHP和AJAX创建RSS聚合器_[PHP教程]
C#,DataGridView隔行显示不同的颜色_.net资料_编程技术
xmlHttpRequest实践之无刷新验证用户名_[AJAX教程]
网站的ALEXA排名下降的原因及解决方法_JavaScript技术_编程技术
解决sql server查询速度慢11个方法_[SQL Server教程]
PHP动态网页编程常用技巧四则_php资料_编程技术
Reading number is top 10 pictures
某某人向找小三的人宣战了
Chinese paper-cut grilles art appreciation5
全球十大灵异酒店
From China fortress sora aoi1
西方气质的东方美女1
Lewd,it is too lewd.
西游日记4
yy365网站上的美女2
Extremely rare TianShan Mountains snow lotus1
这张图有两句话,你看出来了吗?
Download software ranking
Unix video tutorial13
网络管理员第三版
Unix video tutorial14
Boxer's Top ten classic battle6
Tram sex maniac 2 (H) rar bag19
Eclipse 4.2.1 For Win32
Boxer Classic video2
天龙八部最新服务端
Ashlynn Video3
电脑知识及技巧大合集
delv published in(发表于) 2014/1/6 9:09:32 Edit(编辑)
六步使用ICallbackEventHandler实现无刷新回调_[Asp.Net教程]

六步使用ICallbackEventHandler实现无刷新回调_[Asp.Net教程]

六步使用ICallbackEventHandler实现无刷新回调_[Asp.Net教程]























AJAX技术所提倡的无刷新回调,在原来的技术中需要写大量的JavaScript代码或使用一些AJAX框架,使得开发效率和可维护性大大降低。其实ASP.NET2.0中,已经提供了这样的接口,这就是ICallbackEventHandler。


关于ICallbackEventHandler网上已经有很多文章介绍了,这篇实为画蛇添足。ICallbackEventHandler存在于System.Web.UI中,我们先做一个非常简单的例子来试用一下。




第一步,在VS2005中建立一个新的WEB窗件。
第二步,在ASPX中,放上一段HTML代码(如下):





1
2
3


4
5


6
7




第三步,然后在中放入一段JavaScript脚本:




1




第四步,在此ASPX的后台CS代码中,继承ICallbackEventHandler接口,并实现接口中的两个方法:




ICallbackEventHandler.GetCallbackResult() 和 ICallbackEventHandler.RaiseCallbackEvent(string eventArgument)




第五步,增加一个变量CallBackValue,并修改接口的两个方法为:




1 private string CallBackValue = string.Empty;
2
3 string ICallbackEventHandler.GetCallbackResult()
4 {
5 return CallBackValue + ",ok";
6 }
7
8 void ICallbackEventHandler.RaiseCallbackEvent(string eventArgument)
9 {
10 this.CallBackValue = eventArgument;
11 }
12




第六步,运行,界面上会出现一个按钮,点击后,会将“测试”这个字符串传至后台,后台C#代码将字符串加上“,OK”后返回给客户端的JavaScript代码,并显示。




以上六步,就可以实现无刷新回调了。现在,我们来分析一下几段代码。




先看第三步中的JavaScript代码,其中的CallServer()方法中进行了回调,回调的语句为:




<%= ClientScript.GetCallbackEventReference(this, "product", "ReceiveServerData",null)%>;

里面四个参数中第二个参数指定将product这个JavaScript中的字符串变量传回后台,第三个参数指定了从后台返回时接收返回信息的JavaScript方法ReceiveServerData(string Value)。




第五步中后台的两个方法,一个ICallbackEventHandler.RaiseCallbackEvent(string eventArgument)用来接收前台JavaScript中传来的字符串变量,并赋值给内部变量this.CallBackValue,另一个方法ICallbackEventHandler.GetCallbackResult()将变更后的内部变量this.CallBackValue返回给前台JavaScript方法ReceiveServerData(string Value)。




调用的顺序是: (前台)CallServer() --> (后台)ICallbackEventHandler.RaiseCallbackEvent(string eventArgument) --> (后台)ICallbackEventHandler.GetCallbackResult() --> (前台)ReceiveServerData(string Value)。




整个调用过程非常简单,而其中非常关键的一步是第三步的
<%= ClientScript.GetCallbackEventReference(this, "product", "ReceiveServerData",null)%>;
这个方法,以下是从网上找来的一段资料,大家可以看看。




GetCallbackEventReference使得客户端方法在客户端请求结束时得到回收。 它也让CallBackManager 确定产生哪种回叫方法。 在这个例子内使用的被重载的方法是:




public string GetCallbackEventReference(
string target, string argument,
string clientCallback, string context,
string clientErrorCallback)
Table 1. GetCallBackEventReference 方法的参数描述。
Parameters Description target ID of the page where the callback invocation is handled. For more see the other overloaded options available in the next immediate section.In our sample "this" is the argument value, since the callback is handled in the same page. argument This is the parameter defintion used to send value to the server. This value is received by parameter "eventArgument" at the server end using the RaiseCallbackEvent event."arg" becomes the first parameter name in our sample. The value is passed through this argument from the client. clientCallback Method name of the callback that is invoked after successful server call."CallBackHandler" is the method name that handles the callback. context A parameter that is associated with the "argument" from the client. It usually should be used to identify the context of the call. You will understand this better from the sample implementation.In the sample "ctx" is just another parameter definition used. The value for this is passed from the client. clientErrorCallback Name of the method that is called from the CallBackManager in case of any errors.




  从这个方法返回的string是:




__doCallback('__Page',arg,CallBackHandler,ctx, ErrorCallBack)




  另一个重载方法是:




public string GetCallbackEventReference(
Control control, string argument,
string clientCallback, string context)

public string GetCallbackEventReference(
Control control, string argument,
string clientCallback, string context,
string clientErrorCallback)




来源:网络












































添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.