C# 上传视频大小限制配置
2020-07-13 本文已影响0人
飞天猪Pony
在web.config里配置
<system.web>
<compilation debug="true" targetFramework="4.5"/>
<httpRuntime maxRequestLength="1024000000" executionTimeout="200" enable="true"/>
<pages controlRenderingCompatibilityVersion="4.0"/>
</system.web>
<system.webServer>
<security>
<requestFiltering >
<requestLimits maxAllowedContentLength="1024000000" ></requestLimits>
</requestFiltering>
</security>
</system.webServer>