这几天有个项目要上传打文件 结果设置
<system.web> <httpRuntime maxRequestLength="1048576" executionTimeout="120" /> </system.web>
这样后无效 大于30mb的还是无法上传
百度 谷歌之后找到原因
<system.webServer> <!--设置最大允许上传文件大小1G--> <security> <requestFiltering> <requestLimits maxAllowedContentLength="1073741824" /> </requestFiltering> </security> </system.webServer>
还得设置这个 至此问题解决