Hello all, I have been trying to upload via web app +30MB unsuccessfully for some time now. added in web.config : <httpRuntime executionTimeout="999999" maxRequestLength="2097151" /> increased user quota ( Anonymous ASPNet User 300-500MB )... anything else one can do? I can only upload 25 or so MB. Using IIS 7.0 , ASP.NET Version 4.0 ( tried with 2.0) Integrated and Classic. If anyone has any idea? apart from the web.config modification? Thanks
This code should double your upload limit to 60MB Code: <configuration> <system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="62914560"/> </requestFiltering> </security> </system.webServer> </configuration>