up vote 8 down vote favorite
2
share [g+] share [fb]

We have an asp.net site running, which has been working fine for some time, but recently I have been experiencing some issues with IE8.

On posting some pages - mainly on our development server, although on staging too - we get an occasional "Internet Explore cannot display the webpage" error along with the button asking to diagnose connection problems. IE only seems to wait 10 seconds before timing out. I know that the page itself may take longer to load the first time (on dev and staging). So press F5 and everything then works fine.

Is there anything that should be done in the aspx page to tell IE to wait a bit longer?

I thought I had read that the default timeout supposed to be 90 seconds or something for browsers.

A bit more info:

It mostly happens on a POSTing a signup page, but that is just because I test that page and it starts the IIS App, makes the first connection to SQL and pre-caches some information. That first time the page can take 10-15 seconds to come back. IE8 times out after 10 seconds as it has had nothing back.

This happens on a dev W7x64 machine with 8GB RAM, as well as on a staging server WIN2008.

Having googled around a bit, some people are seeing the same problem, but no conclusive pointers to the problem or a solution.

It isn't a connection problem; everything works fine in Firefox, Chrome and even IE7; I have tried with add-ons disabled and resetting IE settings, still happens.

Ideas welcome.

link|improve this question
12  
Well, I have recently solved this. I happen to use some software called InstallAware, having installed it back soon after upgrading to Windows 7. Seems they (and others) set a registry setting during their install to force IE to timeout after 10 seconds. This because, they say, that their installers could get stuck otherwise. But they don't reset it back. WebUI Studio's install is another that does this. This link finally gave me the solution, intersoftpt.wordpress.com/2009/06/23/… – cdm9002 May 4 '10 at 14:29
6  
So, check the registry HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings for a key called ReceiveTimeout, and delete if it is there. – cdm9002 May 4 '10 at 14:30
We are seeing the InstallAware problem as well. I think it's triggered when the install needs a perquisite (eg .NET framework) and it is configured to download from Microsoft during the install. – Eric Labashosky Jun 7 '10 at 21:49
Thanks for the heads up on InstallAware. I never would have guessed that was the culprit! – Toby Mar 8 '11 at 1:20
Great solution cdm9002 – e-on Sep 2 '11 at 16:36
feedback

protected by Community Jul 4 '11 at 14:47

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

3 Answers

Check your Application pool Advanced settings in IIS. It may be lower than is normal. Maybe the Ping period? Mine is 30secs

link|improve this answer
I have the same, default of 30s. – cdm9002 Apr 12 '10 at 22:40
actually since this only happens in IE i doubt it will be an IIS issue. Long shot: do you have an incredibly short cookie expiry? – BritishDeveloper Apr 13 '10 at 16:22
feedback

I think you may have to check this link out :

http://support.microsoft.com/kb/181050

link|improve this answer
That says 5 mins. I am seeing 10 secs timeout. – cdm9002 Apr 12 '10 at 22:45
feedback

Try this out

<httpRuntime executionTimeout="15"/> under system.web in the web.config
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.