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" />

相关文章:

  • 2021-11-05
  • 2021-08-21
  • 2021-10-02
  • 2021-09-06
  • 2022-12-23
  • 2022-12-23
  • 2022-02-14
猜你喜欢
  • 2021-12-07
  • 2021-11-29
  • 2021-07-01
  • 2022-01-27
  • 2021-10-24
相关资源
相似解决方案