【问题标题】:Exception : Maximum request length exceeded例外:超出最大请求长度
【发布时间】:2020-07-01 13:17:48
【问题描述】:

当我尝试在 MVC 网站上上传超过 4 MB 的文件时,我收到错误“超出最大请求长度”。

我增加了 maxRequestLength 和 maxAllowedContentLength ,但得到同样的错误

<requestLimits maxAllowedContentLength="1073741824" />

<httpRuntime maxRequestLength="51200" executionTimeout="600"/>

【问题讨论】:

  • 我认为这个问题之前已经解决了:link
  • 我试过这个解决方案,但同样的错误

标签: asp.net-mvc model-view-controller


【解决方案1】:

试试这个,它在我的项目中工作

<httpRuntime maxRequestLength="1544096" requestValidationMode="2.0" executionTimeout="55590" />

<requestLimits maxAllowedContentLength="1048576000" />

【讨论】:

  • 开始显示进度条但又出现错误
猜你喜欢
  • 1970-01-01
  • 2011-04-20
  • 2015-11-02
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2015-10-04
相关资源
最近更新 更多