I have a .NET 3.5 website that is uploading files to a SQL Server 2008 filestream. This all works great until I hit a certain file size and I unexpectedly get odd error returns in the browser.
In IE 7, if I upload a file with a size of about 100 meg, the browser returns after about 2 minutes with an error saying "Internet Explorer cannot display the webpage". Completely generic and totally useless error. Were it a timeout issue, then I would expect to see an error with a little more explanation.
In Firefox 3.6.7, when uploading the same file the browser returns after about 4 minutes with an equally generic and useless error that says "The connection was reset". Again, were it a timeout error (eg - somewhere in my code I have a connection timing out) then I would at the very least expect Firefox to return after 2 minutes with the generic error, because IE returned after just 2 minutes.
I need some ideas on how to diagnose this and hopefully track down what is causing the problem.
Also, I have the file upload size limited to 1 gig in the web.config.
<!-- 1 Gig upload -->
<httpRuntime maxRequestLength="1048576" />
EDIT:
Are there any settings in IIS 7 that could be affecting this? I'm not an IIS guru, so I may have configured my website wrong.