TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Call Web URL from Windows Application in C#
Pintoo Yadav
May 06
2015
Code
6.5
k
0
1
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
expand
// 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