asp.net限制了上传文件大小为..M,解决方法

asp.net限制了上传文件大小为4M,在:
在web.config里加下面一句,加在<System.web></System.web>之间
如下:
<system.web>

<httpRuntime maxRequestLength="1048576" executionTimeout="3600"/>
//请求最大值,改了就行了</system.web>……

原文地址:https://www.cnblogs.com/ken-admin/p/6405651.html