本来只在Web.config下配置了一条:

<system.web>

   <httpHandlers>

            <add verb="*" path="*.ashx" type="AjaxPro.AjaxHandlerFactory,AjaxPro.2"/>

   </httpHandlers>

</system.web>

只需要在以下节点处再添加一条带上一个name属性就可以用IIS6.1发布了:

<system.webServer>

<handlers>

      <add name="ajaxpro" verb="*" path="*.ashx" type="AjaxPro.AjaxHandlerFactory,AjaxPro.2"/>

</handlers>

</system.webServer>

相关文章:

  • 2022-01-12
  • 2021-11-07
  • 2022-12-23
  • 2022-01-06
  • 2021-07-09
  • 2022-12-23
  • 2021-10-21
猜你喜欢
  • 2021-11-23
  • 2021-06-14
  • 2022-03-07
  • 2021-12-15
  • 2021-09-22
  • 2021-10-12
  • 2022-02-07
相关资源
相似解决方案