Visual Studio 2008 SP1 - How to stop debugging in other browsers than IE?

Visual Studio integrated debugging into IE, when you close IE, it stops debugging, and if you stop debugging, VS closes IE.

I want him to do the same with firefox / chrome! (basically it is 2, if possible with others, it will be appreciated!)

Is there any way to do this?

Thanks in advance!

+7
debugging browser visual-studio-2008
source share
2 answers

You need to change the default browser for Visual Studio for Firefox / Chrome. To change this setting, right-click the aspx file in Solution Explorer and select Browse With . Select the desired browser and set it to default.

+1
source share

You need to write a macro that opens ff (or any other browser) using a debug URL. You can then control it and close it when debugging is complete.

but I think this task is quite difficult to accomplish.

which mentioned here just set the debugging browser by default, does not answer your question at all, b / c it will not be closed ...

If Firefox is installed as your default browser and Firebug is installed, you can debug your script in Firefox. Choose Tools> Firebug> Open Firebug. Now the Firefox instance shows the debug console. To enable script debugging, go to the Console tab, select the script check box and click the "Apply settings for localhost" button.

0
source share

All Articles