1.添加dll的引用
2.web.config下添加
<system.web> <httphandlers> <add verb="post,get" path="" type="ajaxpro.AjaxhandlerFactory,AjaxPro.2" /> </httphandlers> </system.web>
3.在aspx中使用时需要在Load事件中注册:
AjaxPro.Utility.RegisterTypeForAjax(typeof(KLSF_Default), this.Page);
4.定义回调方法:
[Ajaxpro:AjaxMethod] public 返回类型 方法名(参数){ }
5.在aspx中调用
AjaxProCallMethod.方法名