在IIS6.0中这等同于什么(下面的web.config代码在IIS7.5中工作)
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxQueryString="xxx"/>
</requestFiltering>
</security>
</system.webServer>发布于 2013-10-11 07:45:38
URLScan是IIS6的工具,
http://www.iis.net/learn/extensions/working-with-urlscan/common-urlscan-scenarios
发布于 2013-10-10 22:49:49
请看这个问题的答案:Increase file upload size limit in iis6
IIS7及以上版本使用<system.webServer>中的任何内容;IIS6不知道如何处理这些配置。坚持<system.web>元素中的IIS版本低于7的属性。
https://stackoverflow.com/questions/19303814
复制相似问题