How do I configure Visual Studio to stop launching a broswer window ever time I debug an ASP.NET project?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
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. |
||||
|
|
|
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. |
|||
|
|