I have a web app that allos users to upload files (using Telerik's RadAsyncUpload control).
My web.config file is set to allow files up to 2Gb and, when I run the app against Visual Studio's built-in web server it runs just fine.
However, if I switch to using IIS (I have IIS 7.5.7600.16385 installed on my machine) files above a certain size simply fails to upload.
I'm still working on identifying the exact upper limit, but I know a file of 60Mb or more won't upload.
My question is: is there anything specific in IIS that I should check/change?
Just to be clear, I have got the following in my web.config file...
<httpRuntime maxRequestLength="2097152" executionTimeout="86400"/>