我很欣赏以前已经多次询问,但我似乎无法让这个工作。
我的配置文件中包含以下值:
<httpRuntime maxRequestLength="16384" executionTimeout="7200" />
和
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="16777216" />
</requestFiltering>
</security>
</system.webServer>
然而,我收到了最大请求长度异常。
我的邮件内容长度为:内容长度:7785556
任何人都可以提出一个我可能忽略的环境吗?
答案 0 :(得分:1)
我不得不补充道:
<httpRuntime maxRequestLength="16384" executionTimeout="7200" />
到我的machine.config。
答案 1 :(得分:1)
这取决于Framework版本,在2.0 httpRuntime 下工作。在其他Framework版本上,您应该使用 requestFiltering 部分来定义此限制。
答案 2 :(得分:0)