How to change the default browser to debug with in Visual Studio 2008?

When you hit F5, the browser windows pops up, how do you set which browser the debugger users in Visual Studio 2008?

Update 1
I have looked for the 'Browse with' option and not found it.
Visual Studio opens the default browser instead of Internet Explorer

Update 2
If you are already debugging you dont have the 'Browse with' option.

  • Stop debugging and then its there!
  • Update 3
    The accepted answer below is also relevant to changing the default browser to debug with in Visual Studio 2010.


  • (In the Project Solution window) Right click a page (.aspx, or on a folder)
  • Select Browse With...
  • Choose your browser
  • Click Set as Default
  • Click Browse
  • 上下文菜单截图


    ASP.NET projects:

  • Right click a webpage (.aspx, or on a folder)
  • Select Browse With...
  • Choose your browser
  • Click Set as Default
  • Click Browse
  • ASP.NET MVC 1 projects:

    Right click Default.aspx, then follow steps above.

    ASP.NET MVC 2 projects:

    As there is no Default.aspx, you need to create a Web Form (right-click project > Add > New Item) and follow the steps above.


    如果您使用ASP-NET MVC,则需要右键单击Default.ASPX,该Default.ASPX将具有Browse With菜单。

    链接地址: http://www.djcxy.com/p/95358.html

    上一篇: VS 2008调试器以十六进制显示整数

    下一篇: 如何将默认浏览器更改为在Visual Studio 2008中进行调试?