gpt4 book ai didi

asp.net-mvc - MVC-System.Web.HttpException : Maximum request length exceeded

转载 作者:行者123 更新时间:2023-12-03 03:58:36 25 4
gpt4 key购买 nike

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

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

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

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

我有一个页面,允许用户上传最多五张图像。在测试过程中,我尝试上传 5 个图像,总计约 16MB,并且收到超出最大请求长度的错误。我还需要设置什么吗?

最佳答案

尝试:

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

除了您设置的内容之外。您可能还想查看执行超时(也是 httpRuntime 的属性)。

关于asp.net-mvc - MVC-System.Web.HttpException : Maximum request length exceeded,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35242079/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com