Home >Database >Mysql Tutorial >AjaxPro.2.dll基本使用

AjaxPro.2.dll基本使用

WBOY
WBOYOriginal
2016-06-07 15:48:511081browse

2.1.3 在资源管理器的引用文件夹下,就可以看到AjaxPro了,说明添加引用成功,如图1_3所示。 2.2 、配置 web.config 这一步的作用是保证客户端向"ajaxpro/*.ashx"的请求(POST和GET)都被AjaxPro.AjaxHandlerFactory拦截。 打开 web.config 文件,在 configu

2.1.3在资源管理器的引用文件夹下,就可以看到AjaxPro了,说明添加引用成功,如图1_3所示。

AjaxPro.2.dll基本使用

2.2、配置web.config

这一步的作用是保证客户端向"ajaxpro/*.ashx"的请求(POST和GET)都被AjaxPro.AjaxHandlerFactory拦截。

打开web.config文件,在后添加以下代码,

httpHandlers>

addverb="POST,GET"path="ajaxpro/*.ashx"type="AjaxPro.AjaxHandlerFactory, AjaxPro"/>

httpHandlers>

 

如图2_1所示

AjaxPro.2.dll基本使用

2.3、添加服务端方法

2.3.1打开后台代码,在Page_Load方法体内加上如下代码,

 AjaxPro.Utility.RegisterTypeForAjax(typeof(所在类的类名));如图3-1所示。

AjaxPro.2.dll基本使用  

其作用是向客户端输出下面的代码:

 

2.3.2、添加数字加一的方法,首先在方法前加[AjaxPro.AjaxMethod],然后像写C#方法一样写方法,如图3-2

AjaxPro.2.dll基本使用

注意:需要加上[Ajax.AjaxMethod]标识,这样才能够被客户端访问

2.4、添加前台代码

在前台添加JS脚本,调用服务器端方法,如图4-1所示(Try.AjaxTest.Add(num)Try为页面类,即AjaxTest类所在的命名空间,这里是Try;而AjaxTest即为类名,Add为方法名)

AjaxPro.2.dll基本使用

2.5、运行程序,检验结果

AjaxPro.2.dll基本使用

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn