2010-12-10 68 views
2

我正在使用Windows 7與Internet Explorer 8瀏覽和Visual Studio 2008作爲SDK。由於客戶端的標準是Internet Explorer 6,因此我需要確保舊版本的外觀和感覺一致。兼容模式不會這樣做,因爲我試圖用舊瀏覽器查看新頁面,而不是相反。如何使用舊版本的Internet Explorer進行調試?

我真正需要的是在Visual Studio中調試時使用Internet Explorer 6的方法。如何設置?

+0

卸載IE8 - >安裝IE6。排序。 – 2010-12-10 09:49:26

+0

[在同一臺計算機上運行IE6,IE7和IE8]的可能重複(http://stackoverflow.com/questions/574463/running-ie6-ie7-and-ie8-on-the-same-machine) – 2010-12-10 22:53:31

回答

3

AFAIR微軟有一個免費的虛擬PC鏡像,其中包含Windows XP和IE6,僅供開發人員測試Web應用程序。

Here它是。

2

您可以在Windows 7中使用XP Mode,也可以使用VirtualBox並安裝帶有IE 6的Windows XP。或者您可以使用Microsoft Virtual PC並從Microsoft下載Windows XP with IE6的圖像

3

您可以使用IETester。 爲了使Visual Studio 2008中使用Internet Explorer 6,你必須執行這些操作的默認瀏覽器:

  1. 在aspx文件
  2. 點擊瀏覽方式右鍵單擊...
  3. 添加
  4. 指定路徑爲IETester.exe
  5. 將命令行參數-IE6添加到路徑。例如:"C:\Program Files\Core Services\IETester\IETester.exe" -IE6
  6. 單擊確定
  7. Visual Studio說File name does not exist, is invalid, or contains parameters that cannot be validated. Do you want to change your entry?。點擊編號
  8. 點擊瀏覽
  9. 您的應用程序在Internet Explorer 6模式下以IETester打開。
+0

爲什麼downvoted? – Egor4eg 2010-12-20 08:16:15

-1

如果你不想使用虛擬機周圍一團糟(雖然這是我的建議),還有兩個更多的選擇:

  1. IETester
  2. MultipleIEs

我的天堂並沒有試圖直接用VS 2008來使用它們,但是你可能對它們有好運。