.Net上传文件超过了最大请求长度

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