Hi guys
I am trying to fix the issue with the IIS 7.5 configuration for .NET 4.0 Intergrated mode.
Users can't donwload the file > 30M. I know it is one of the annoying issues in IIS 7.5 default configuration.
I have read the blogs and articles, where I have to change
<system.web><httpRuntime maxRequestLength="2097151" />
, which does not make sense, as for me, for Intergrated mode, and
<system.webServer><security><requestFiltering><requestLimits maxAllowedContentLength="2147482624" /><!--this value in bytes~2GB--></requestFiltering></security></system.webServer>
But still the download does not work. It ends up to 30-40MB.
Is there any other "cool" settings I have to check to get it working?
Thanks in advance for your help.