Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
2  
//Stop debugging and then its there!// That's the ticket! – granadaCoder Feb 21 '11 at 22:22

7 Answers

up vote 48 down vote accepted
  • (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

context menu screenshot

share|improve this answer

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.

share|improve this answer
2  
Just a note, make sure you are not in "Debug Mode", as "Browse with" will not appear then. – NealWalters Jun 10 '11 at 16:42
1  
Re: ASP.NET 2 - You don't need to create a new project, just a file as @Photon suggests. – UpTheCreek Sep 5 '11 at 8:29
@UpTheCreek Thanks for pointing out - answer updated. – Dunc Sep 7 '11 at 7:22

If you use ASP-NET MVC, you need to right-click on Default.ASPX which will have a Browse With menu.

share|improve this answer

To permanently make Visual Studio open a project in IE without changing the default browser you can do the following:

Project Properties -> Web -> Start Action

Start external program: C:\Program Files\Internet Explorer\iexplore.exe Command line arguments: Enter the url of the path to your start page ie http:\localhost\myproject\default.aspx

This won't allow you to debug client side script in Visual Studio though.

share|improve this answer

If you are using MVC 2 you do not need to create another project, just add component -> webform to the project then:

* Right click the webform  
* Select Browse With...  
* Choose your browser  
* Click Set as Default  
* Delete the webform
share|improve this answer

If you use MVC, you don't have this menu (no "Browse With..." menu)

Create first a normal ASP.NET web site.

share|improve this answer
1  
No need, just right-click on the Default.ASPX file and that one file will have the option. – PRINCESS FLUFF Sep 1 '09 at 16:56
There is no Default.aspx file in an MVC 4 app as far as I know? – gotnull Dec 10 '12 at 4:56

ie ---> Tools ----> Internet options -----> Programe ------> Make Defualt

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.