APS.NET MVC 上传文件出现 System.Web.HttpException: 超过了最大请求长度 这个问题
原因是 默认最大上传文件大小为4096,而我提交的文件太大了。
解决方案:修改config.xml,设置最大maxRequestLength
<configuration>
<system.web>
<httpRuntime maxRequestLength="10000" />
</system.web>
<configuration>
2022-12-18 21:57:59
APS.NET MVC 上传文件出现 System.Web.HttpException: 超过了最大请求长度 这个问题
原因是 默认最大上传文件大小为4096,而我提交的文件太大了。
解决方案:修改config.xml,设置最大maxRequestLength
<configuration>
<system.web>
<httpRuntime maxRequestLength="10000" />
</system.web>
<configuration>
下一篇:基于Handler架构的录音程序