最大请求长度超过iis 7

时间:2013-05-15 10:17:50

标签: c# asp.net iis-7 web-config

我很欣赏以前已经多次询问,但我似乎无法让这个工作。

我的配置文件中包含以下值:

  <httpRuntime maxRequestLength="16384" executionTimeout="7200" />

<system.webServer>
<security>
  <requestFiltering>
     <requestLimits maxAllowedContentLength="16777216" />
  </requestFiltering>
</security>
</system.webServer>

然而,我收到了最大请求长度异常。

我的邮件内容长度为:内容长度:7785556

任何人都可以提出一个我可能忽略的环境吗?

3 个答案:

答案 0 :(得分:1)

我不得不补充道:

 <httpRuntime maxRequestLength="16384" executionTimeout="7200" />

到我的machine.config。

答案 1 :(得分:1)

这取决于Framework版本,在2.0 httpRuntime 下工作。在其他Framework版本上,您应该使用 requestFiltering 部分来定义此限制。

答案 2 :(得分:0)