AjaxPro.dll和AjaxPro.2.dll的web配置方法

在<system.web>节点下配置
<httpHandlers>
        <add verb="POST,GET" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory, AjaxPro"/>
</httpHandlers>
2.AjaxPro.2.dll在web.config中的配置如下:
在<system.web>节点下配置
<httpHandlers>
      <add verb="*" path="*.ashx" type="AjaxPro.AjaxHandlerFactory,AjaxPro.2"/>
</httpHandlers>

你可能感兴趣的:(Ajax)