Want to become a Vibe Coder? Join Vibe Coding Training here
x
C# Corner
Tech
News
Videos
Forums
Jobs
Books
Events
More
Interviews
Live
Learn
Training
Career
Members
Blogs
Challenges
Certification
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
Call Web URL from Windows Application in C#
WhatsApp
Pintoo Yadav
May 06
2015
6.9
k
0
1
// First way
System.Diagnostics.Process.Start(
"http://www.oyodeals.com"
);
// Second Way
ProcessStartInfo sInfo =
new
ProcessStartInfo(
"http://www.golivecode.com/"
);
Process.Start(sInfo);
Open a Web URL
Call Web URL from Windows Application
Up Next
Call Web URL from Windows Application in C#