2

When trying to debug an MVC2 app in VS2010 using IE 8, I sometimes get the following error (port number changes).

Unable to Start program 'http://localhost:55853/' Element not found

It is really difficult to find the problem as it seems to be totally random. Has anyone else come across this problem?

Chin
  • 12,582
  • 38
  • 102
  • 152
  • The only way I can seem to get around this is by opening task manager and force quitting all iexplorer instances and all instances of the WebDev server. – Chin Sep 13 '10 at 06:21
  • Even that doesn't seem to work now. arghhhhh! – Chin Sep 15 '10 at 05:08

4 Answers4

3

if you had to add the DWORD TabProcGrowth to your registry in order to debug in VS2005 using IE8, you will need to delete that DWORD in order to debug in VS2010 using IE8.

Ken
  • 31
  • 2
0

you can turn of dynamic port in project setting. By doing that, you can prevent starting multiple instance of asp.net developer server.

Russel Yang
  • 2,633
  • 3
  • 21
  • 18
0

Disable automatic crash recovery in IE via 'Internet Options' -> 'Advanced' -> 'Browsing'.

Quick Joe Smith
  • 8,074
  • 3
  • 29
  • 33
0

Tools > Internet Options > Advanced Under the Browsing Section --- Uncheck the "Disable Script Debugging (Internet Explorer)

Mark
  • 16