【发布时间】:2021-01-06 05:57:14
【问题描述】:
我正在尝试使用 C# 和 ASP.NET MVC 上传文件,但出现此错误:
HTTP 错误 413.1 - 请求实体太大
请求过滤模块用于拒绝超过请求内容长度的请求。
这就是我配置 web.config 的方式:
<system.web>
<authentication mode="None"/>
<compilation debug="true" targetFramework="4.7.2"/>
<httpRuntime targetFramework="4.7.2" executionTimeout="3600" maxRequestLength="104857600" enable="true"/>
</system.web>
【问题讨论】:
-
第一次你尝试了吗forums.asp.net/t/…
标签: c# html asp.net-mvc