可能是asp.net限制了上传文件的大小,默认为4M,解决:
在web.config里加下面一句,加在<System.web></System.web>之间
如下:
<system.web>
<httpRuntime maxRequestLength="102400" executionTimeout="3600"/><!--加上此句,上传限制有100M-->
</system.web>
转载于:https://www.cnblogs.com/licuihua/archive/2013/04/25/3042455.html