0

IIS 6.0 中的等效项是什么(下面的 web.config 代码在 IIS 7.5 中有效)

<system.webServer> 
    <security>
      <requestFiltering>
        <requestLimits maxQueryString="xxx"/>
      </requestFiltering>
    </security>
  </system.webServer>
4

2 回答 2

1

URLScan 是 IIS 6 的工具,

http://www.iis.net/learn/extensions/working-with-urlscan/common-urlscan-scenarios

于 2013-10-11T07:45:38.267 回答
0

请看这个问题的答案: Increased file upload size limit in iis6

<system.webServer>IIS 7 及更高版本使用其中的任何内容;IIS 6 不知道如何处理这些配置。<system.web>对于低于 7 的 IIS 版本,请坚持元素中的属性。

于 2013-10-10T22:49:49.157 回答