1.先把Ajax.dll添加引用到项目中
2.修改Web.config。
<configuration> <system.web> <httpHandlers> <!-- Ajax.dll的配置 --> <add verb="POST,GET" path="ajax/*.ashx" type="Ajax.PageHandlerFactory,Ajax" /> <!-- AjaxPro.dll的配置文件--> <add verb="*" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory,AjaxPro"/> </httpHandlers> </system.web> <!-- 在 Internet 信息服务 7.0 下运行 ASP.NET AJAX 需要 system.webServer节。对早期版本的 IIS 来说则不需要此节。 --> <system.webServer> <validation validateIntegratedModeConfiguration="false"/> <handlers> <add name="Ajax" verb="POST,Ajax"/> </handlers> </system.webServer> </configuration>
3对Page_Load事件中进行运行时注册。
protected void Page_Load(object sender,EventArgs e) { Ajax.Utility.RegisterTypeForAjax(typeof(fore_Ajax));//是Ajax.dll的 AjaxPro.Utility.RegisterTypeForAjax(typeof(fore_Ajax));//Ajaxpro.dll的 }
4创建服务器端方法
[Ajax.AjaxMethod(Ajax.HttpSessionStateRequirement.ReadWrite)] public string getMess(string str) { return str+" ok"; }
5 客户端调用。
<div id="detail" onclick="javascript:GetMessage()">ajax.dll</div> <script type="text/javascript"> //ajax.dll function GetMessage() { //document.getElementById("detail").innerHTML = fore_Ajax.getMess('hao123').value; $("#detail").html(fore_Ajax.getMess('hao123').value); } </script>