asp.net限制了上传文件大小为4M,在:在web.config里加下面一句,加在<System.web></System.web>之间如下:<system.web><httpRuntime maxRequestLength="1048576" executionTimeout="3600"/>//请求最大值,改了就行了</system.web>……