How do I configure Visual Studio to stop launching a broswer window ever time I debug an ASP.NET project?
+8
A:
In the properties of the web project on the Web tab (VS2008) under Start Actions, or directly under Start Options in other versions of Visual Studio. Select the "Don't open a page. Wait for a request from an external application" radio button.
That should do the job. But will probably find you need a browser to test it.
David McEwing
2009-05-27 02:36:09
A:
The best way to beat this is to Build Solution (right click solution -> Build Solution) and just use the browser as normal. It executes faster too, which is a plus.
Chance
2009-05-27 03:17:01