MVC - System.Web.HttpException:超出最大请求长度

时间:2016-02-06 14:20:54

标签: asp.net-mvc

我的web.config中有以下代码......

  <system.webServer>
    <modules>
      <remove name="FormsAuthentication" />
    </modules>

    <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="1073741824" />
      </requestFiltering>
    </security>

    <validation validateIntegratedModeConfiguration="false" />
  </system.webServer>

我有一个页面,我允许用户上传最多五张图片。在测试中,我试图上传五张图像,总计大约16MB,并且我超出了最大请求长度误差。我还需要设置其他东西吗?

1 个答案:

答案 0 :(得分:4)

尝试:

<configuration>
    <system.web>
        <httpRuntime maxRequestLength="1073741824" />
    </system.web>
    <system.webServer>
       <!-- Your other settings -->
    </system.webServer>
</configuration>

除了你设定的内容。您可能还想查看executiontimeout(也是httpRuntime的属性)。