需要在appsetting文件中设置最大请求长度。 在web.config中,我们使用
<configuration>
<system.web>
<httpRuntime maxRequestLength="1048576" />
</system.web>
答案 0 :(得分:0)
要指定最大请求长度,可以将web.config
添加到项目中,然后像
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483648" />
</requestFiltering>
</security>
</system.webServer>
您可以从[Discussion]: New default 30 MB (~28.6 MiB) max request body size limit进行检查。
您也可以尝试New default 30 MB (~28.6 MiB) max request body size limit #267