views:

161

answers:

2

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
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