asp.net 3.5
在<configuration>节点下面加上这个节点:
<location path="ajaxpro"> <system.webServer> <handlers> <add verb="*" path="*.ashx" name="AjaxPro" type="AjaxPro.AjaxHandlerFactory,AjaxPro.2" /> </handlers> </system.webServer> </location>
asp.net 2.0
在<system.web> -> <handlers>下加上
<add verb="*" path="*.ashx" name="AjaxPro" type="AjaxPro.AjaxHandlerFactory,AjaxPro.2" />
转载于:https://www.cnblogs.com/_zjl/archive/2011/06/27/2091668.html
相关资源:ajaxpro.2框架(含DLL文件和具体使用说明)