我刚刚安装了IE8(最终版)并重新启动。我无法再在Windows Server 2003 Enterprise R2上使用Visual Studio 2005调试Web应用程序项目。我收到消息“Internet Explorer无法显示网页”,然后WebDev.WebServer.exe退出,没有可见的错误消息,事件查看器中没有任何内容。
有没有人有任何想法?
没有帮助的事情:
有所帮助的事情:
我的主机文件包含:
# Copyright (c) 1993-1999 Microsoft Corp.
#
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.
#
# This file contains the mappings of IP addresses to host names. Each
# entry should be kept on an individual line. The IP address should
# be placed in the first column followed by the corresponding host name.
# The IP address and the host name should be separated by at least one
# space.
#
# Additionally, comments (such as these) may be inserted on individual
# lines or following the machine name denoted by a '#' symbol.
#
# For example:
#
# 102.54.94.97 rhino.acme.com # source server
# 38.25.63.10 x.acme.com # x client host
127.0.0.1 localhost
答案 0 :(得分:43)
我的一位同事遇到了类似的问题并发现了这一点:
IE 8有一个名为Loosely-Coupled Internet Explorer(LCIE)的功能,可以让IE在多个进程中运行。
http://www.microsoft.com/windows/internet-explorer/beta/readiness/developers-existing.aspx#lcie
旧版本的Visual Studio调试器因此而感到困惑,无法弄清楚如何附加到正确的进程。您可以通过禁用LCIE的流程增长功能来解决此问题。方法如下:
- 打开RegEdit
- 浏览HKEY_LOCALMACHINE - >软件 - >微软 - > Internet Explorer - >主
- 在此密钥下添加一个名为TabProcGrowth
的dword- 将TabProcGrowth设置为0
醇>由于您在Windows Server 2003上运行,因此您应该这样做。如果您在Vista或更新版本上遇到同样的问题,您还需要关闭保护模式。
信用:Visual Studio调试器项目经理Brad Sullivan,MSFT
来源:http://social.microsoft.com/Forums/en-US/vsdebug/thread/e2c795cd-b7a0-4fad-b7c9-b1ca40d7302e
答案 1 :(得分:3)
在安装Windows Vista更新后,我最近遇到了类似的问题。基本上,更新更改了hosts文件,这导致了您描述的相同问题。
显然,hosts文件中的条目需要以三个冒号为前缀,即:
::: 1 localhost
出于某种原因,对Vista的更新将此更改为两个冒号。我不确定你是否有同样的问题,但听起来值得一试。
答案 2 :(得分:2)
如果您使用IE8和Visual Studio 2008遇到此问题,请修改您的hosts文件并将localhost指向127.0.0.1:
127.0.0.1 localhost