无法上传大型视频文件
本文关键字:视频 文件 大型 | 更新日期: 2023-09-27 18:08:22
我试图在我的asp.net项目中使用file up loader上传大型视频文件,但无法上传。我也做了一些改变在我的web.config
文件,但不工作。小视频文件上传成功,大视频文件上传出现问题。
<system.web>
<httpRuntime maxRequestLength="1048576"/>
<pages validateRequest="false"/>
<compilation targetFramework="4.5" defaultLanguage="c#" debug="true"/>
<machineKey validationKey="1234567890123456789012345678901234567890AAAAAAAAAA" decryptionKey="123456789012345678901234567890123456789012345678" validation="SHA1" decryption="Auto"/>
<customErrors mode="Off"/>
<authentication mode="Forms"/>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="1073741824"/>
</requestFiltering>
</security>
</system.webServer>
maxRequestLength
优先于maxAllowedContentLength
,因为它更小。
尝试将其值增加到1073741824