首页 > 解决方案 > 例外:超出最大请求长度

问题描述

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

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

<requestLimits maxAllowedContentLength="1073741824" />

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

标签: asp.net-mvcmodel-view-controller

解决方案


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

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

<requestLimits maxAllowedContentLength="1048576000" />

推荐阅读