maxUrlLength和maxQueryStringLength的更高范围是什么

时间:2017-12-22 10:16:23

标签: c# asp.net iis

我收到远程服务器返回错误:(400)错误请求。我尝试将zip文件上传到托管在远程服务器上的Web API时出现异常。

我的web.config

<httpRuntime maxRequestLength="300000000" />

IIS显示:

  • Max Querystring = 2048
  • 最大网址长度= 4096

发现我的网址超出此限制。用google搜索QueryString和URLLength的最大值。但是,我无法为此找到恒定的结果,

我尝试过:

<httpRuntime maxRequestLength="300000000" 
             relaxedUrlToFileSystemMapping="true" 
             maxUrlLength="65536" maxQueryStringLength="2097151"/>

0 个答案:

没有答案