C# Corner
Tech
News
Videos
Forums
Trainings
Books
Events
More
Interviews
Jobs
Live
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
How to Launch a URL from C#
WhatsApp
Soft Dev
16y
72.2
k
0
5
Resource
0
You can use the Process class and Start method. Pass URL in the Start method and it will open a URL in the default browser on your machine.
System.Diagnostics.Process.Start("http://www.c-sharpcorner.com/Default.aspx");
Windows Forms
C#