When I debug in Visual Studio, Firefox opens and that is annoying because of the hookups that Internet Explorer and Visual Studio have, such as when you close the Internet Explorer browser that starting debug opened, Visual Studio stops debugging. How can I get Visual Studio to open Internet Explorer instead without having to set Internet Explorer as my default browser?
|
|
|
Scott Guthrie has made a post on how to change Visual Studio's default browser:
I however dislike the fact that this isn't as straightforward as it should be. |
|||||||||||||||||||||
|
|
In Visual Studio 2010 the default browser gets reset often (just about every time an IDE setting is changed or even after restarting Visual Studio). There is now a default browser selector extension for 2010 to help combat this: WoVS Default Browser Switcher: http://visualstudiogallery.msdn.microsoft.com/en-us/bb424812-f742-41ef-974a-cdac607df921
Edit: This works with ASP.NET MVC applications as well. Note: One negative side effect of installing this extension is that it seems to nag to be updated about once a month. This has caused some to uninstall it because, to them, its more bothersome then the problem it fixes. Regardless it is easily updated through the extension manager and I still find it very useful. You will see the following error when starting VS:
|
|||||||||||
|
|
For MVC3 you don't have to add any dummy files to set a certain browser. All you have to do is:
|
|||||
|
|
Right-click on an aspx file and choose 'browse with'. I think there's an option there to set as default. |
|||
|
|
|
Also may be helpful for ASP.NET MVC:
|
|||||||||
|
|
In the Solution Explorer, right-click any ASPX page and select "Browse With" and select IE as the default. Note... the same steps can be used to add Google Chrome as a browser option and to optionally set it as the default browser. |
|||
|
|
|
Quick note if you don't have an .aspx in your project (i.e. its XBAP) but you still need to debug using IE, just add a htm page to your project and right click on that to set the default. It's hacky, but it works :P |
|||
|
|
|
If you're running an MVC 3 application - in your solution explorer click the show all files icon and then under the Global.asax file there should be a file called YourProjectName.Publish.XML right-click it and then click "Browse With..." and select your favorite browser as the default. |
|||
|
|
|
I couldn't find any aspx page in my MVC3 project, so I added a dummy webform1.aspx. This is totally useless, but it worked for setting the default browser for the project. I then deleted the dummy file and everything works great! |
|||
|
|
|
Apparently this is now going to be built into VS 11 - http://blogs.msdn.com/b/webdevtools/archive/2012/03/01/new-time-saving-features-for-web-projects-in-visual-studio-11-beta.aspx |
|||
|
|
|
Another way is to do the following in Visual Studio:
|
||||
|
|
|
You may debug by firefox also . Fallow these steps Tool->Attach to process and select firefox.exe or your default browser than debugger works by this browser. But I had some trouble when firefox is 32 bit and and VS2010 is 64 bit. Anyway right click the current document browse with--> than choose your browser than set as default it. This way is better. B'cause firefox's process id may change than you will be annoyed for attaching the process again. |
|||
|
|
