32

我刚刚安装了 IE8(最终版)并重新启动。我无法再在 Windows Server 2003 Enterprise R2 上使用 Visual Studio 2005 调试 Web 应用程序项目。我收到消息“Internet Explorer 无法显示网页”,然后 WebDev.WebServer.exe 退出,没有可见的错误消息,事件查看器中也没有任何内容。

有没有人有任何想法?

没有帮助的事情:

  • 将 localhost 添加到受信任的站点
  • 将端口更改为 8080 或 80
  • 检查我的主机文件(里面只有 127.0.0.1 localhost)

有点帮助的事情:

  • 使用 CTRL-F5 运行(不是调试),效果很好(除非您需要调试)
  • 将默认的 Visual Studio 浏览器更改为 Firefox,它允许我进行调试

我的主机文件包含:

# 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
4

3 回答 3

43

我的一位同事遇到了类似的问题并发现了这一点:

IE 8 有一个称为松耦合 Internet Explorer (LCIE) 的功能,它导致 IE 跨多个进程运行。

http://www.microsoft.com/windows/internet-explorer/beta/readiness/developers-existing.aspx#lcie

旧版本的 Visual Studio 调试器对此感到困惑,无法弄清楚如何附加到正确的进程。您可以通过禁用 LCIE 的进程增长功能来解决此问题。就是这样:

  1. 打开注册编辑
  2. 浏览到 HKEY_LOCALMACHINE -> SOFTWARE -> Microsoft -> Internet Explorer -> Main
  3. 在此键下添加一个名为 TabProcGrowth 的 dword
  4. 将 TabProcGrowth 设置为 0

由于您在 Windows Server 2003 上运行,这就是您需要做的所有事情。如果您在 Vista 或更新版本上遇到同样的问题,您还需要关闭保护模式。

信用:Brad Sullivan,项目经理,Visual Studio 调试器,MSFT

资料来源:http ://social.microsoft.com/Forums/en-US/vsdebug/thread/e2c795cd-b7a0-4fad-b7c9-b1ca40d7302e

于 2009-03-23T12:54:11.153 回答
3

我最近在安装 Windows Vista 更新后遇到了类似的问题。基本上更新更改了主机文件,这导致了您描述的相同问题。

显然,hosts文件中的条目需要以三个冒号作为前缀,即:

:::1 本地主机

由于某种原因,对 Vista 的更新将其更改为两个冒号。我不确定你是否有同样的问题,但听起来值得一试。

于 2009-03-19T20:01:46.337 回答
2

如果您在 IE8 和 Visual Studio 2008 中遇到此问题,请修改您的主机文件并将 localhost 指向 127.0.0.1:

::1 本地主机

127.0.0.1 本地主机

于 2009-04-15T21:30:57.273 回答