I have tried to upload file above 30 MB till 100 MB but none of the files are uploading in angular application. Angular application hosted in Azure and below configuration files are used in code
in web.config inside configuration tag below settings are added
<configuration>
<system.web>
<!-- maxRequestLength for asp.net, in KB (100 * 1024) -->
<httpRuntime maxRequestLength="102400" ></httpRuntime> -- in kilo bytes
</system.web>
<system.webServer>
<security>
<requestFiltering>
<!-- This will handle requests up to 100MB (100 * 1024 * 1024)-->
<requestLimits maxAllowedContentLength="104857600" /> --- in bytes
</requestFiltering>
</security>
</system.webServer>
</configuration>
Configured 100 MB upload limit in both tag which has verified one of the blog says that both value should be matched so that 102400 KB and 104857600 bytes have referred 100 MB.
Whenever upload any files above 30MB till 100 MB the error says CORS Error. As per my understanding azure accepts all request..