我有一个 url 被请求,即 10 个 2500 个字符长(它在 f12 工具上显示为完整的 url,没有被截断)但是在我的 aspx 页面中,传入的查询字符串被截断。我已经尝试将这些添加到 web.config
<httpRuntime maxRequestLength="2147483647" />
和
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" maxUrl="2147483647" maxQueryString="2147483647" />
</requestFiltering>
</security>
</system.webServer>
IIS 7 上是否有任何其他设置限制了 url 的长度?有没有办法查看进入 IIS 的所有请求,以便我知道传入的内容不会被截断?(我试过wireshark,没有简单的方法从中获取url。流量是https)