ASP.Net - How to stop Visual Studio from launching a new browser window when starting debug? Code Example

The code for How to stop Visual Studio from launching a new browser window when starting debug?

Open your startup project's properties (Project → {ProjectName} Properties... 
from the main menu or right click your project in the Solution Explorer 
and choose Properties), 
Then navigate to the Web tab and under Start Action choose Don't open a page. 
Wait for a request from an external application.

You will still be able to use any browser (or Fiddler, whatever) 
to access the running application, 
but it won't open the browser window automatically, 
it'll just start in the background and wait for any requests.
Code by IncludeHelp, on February 28, 2023 08:17
Reference: stackoverflow

Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.