Process.Start(url);
Everytime this code executes, I get a new tab in my browser, showing the content of url.
Is there a way to prevent the ‘new tab’ behaviour and open in the same tab/window each time?
(I would prefer not to use a WebBrowser Control for security reasons.)
I am building a desktop application: not ASP.NET
I don’t believe it is possible to do that (at least in any direct fashion) from your application. When you ask the system to start the process via Process.Start, it is up to the target application (the browser in this case) to decide how it handles the request. So to do that, it would probably be necessary to adjust some setting in the browser (e.g., Chrome) itself.