Ank*_*uhe 5 c# asp.net video file-upload
我试图在我的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>
Run Code Online (Sandbox Code Playgroud)