web.config 的webServer节是用于iis7的优化处理用以替换iis6的system.web节
iis6的system.web
<system.web>
    </httpModules>
        <add name="..." type="..." />
    </httpModules>
    <httpHandlers>
        <add verb="...." path="..." type="..." />

    </httpHandlers>

</system.web>
iis7的system.web
system.webServer>
    </modules>
        <add name="..." type="..." />
    </modules>
    <handlers accessPolicy="Read, Write, Script, Execute">
        <add verb="...." name="..." path="..." type="..." />

    </handlers>

</system.webServer>

相关文章:

  • 2022-12-23
  • 2021-07-08
  • 2021-08-30
  • 2022-12-23
  • 2021-05-04
  • 2021-09-05
  • 2021-11-30
猜你喜欢
  • 2021-08-26
  • 2021-12-21
  • 2022-02-10
  • 2022-12-23
  • 2021-08-07
  • 2022-12-23
  • 2021-12-26
相关资源
相似解决方案