我正在尝试使用我的asp.net项目中的文件加载器上传大型视频文件,但无法上传。我还在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>
答案 0 :(得分:1)
maxRequestLength
优先于maxAllowedContentLength
,因为它较小。
尝试将其值增加到1073741824
。