Starting external web browser with URL
C#
3
Posts
2
Posters
0
Views
1
Watching
-
Hi, I want to start the system's favorite web browser from my c# app with an URL I specify. How do I do this? Regards, Stefan
-
Hi, I want to start the system's favorite web browser from my c# app with an URL I specify. How do I do this? Regards, Stefan
System.Diagnostics.Process.Start("http://www.youraddress.com");
-
System.Diagnostics.Process.Start("http://www.youraddress.com");
thank you