错误消息:超过了最大请求长度
错误原因:asp.net默认最大上传文件大小为4M,运行超时时间为90S。
解决方案
1. 修改web.config文件可以改变这个默认值
?<configuration> ??????????????<system.web> ??????????????????????????<httpRuntime maxRequestLength="1048576" executionTimeout="3600" /> ???????</system.web> ????????<configuration> ?
Asp.net:上传文件超过了最大请求长度
原文地址:https://www.cnblogs.com/Fooo/p/8966503.html