Reputation: 5766
Windows forms application. How can I open browser window with specific url on click of a button?
Upvotes: 1
Views: 917
Reputation: 15579
In your Click handler use:
System.Diagnostics.Process.Start("http://www.google.com")
That will open a URL in whatever the user's default browser is.
Upvotes: 3