Hi,
I need upload files with size superior at 30 mgb.
I set this web.config
<?xml version="1.0"?>
<configuration>
<system.web>
<authorization>
<allow roles="Admin_ControlOperaciones"/>
<deny users="*"/>
</authorization>
<httpRuntime targetFramework="4.5" executionTimeout="2088" maxRequestLength="101200" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="104857600" />
</requestFiltering>
</security>
</system.webServer>
</configuration>
When I test the project in local machine, it works fine, but in the server it doesn't work. In server I can upload only files with less than 30mgb, but not superior at 30Mgb.
Any idea?