在项目集中,直接找到最外层的Web.config文件,在文件中找到<system.web>节点中,给httpRuntime添加maxRequestLength=“419430400” executionTimeout=“360000”
<system.web>
<httpRuntime maxRequestLength="419430400" executionTimeout="360000" />
</system.web>
同时,在同一Web.config文件中的<system.web>节点下面,直接添加<system.webServer>节点,代码如下:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="419430400" />
</requestFiltering>
</security>
</system.webServer>