|
-
June 5th, 2002, 10:33 AM
#1
open web browser
How to open a web browser from an application?
-
June 5th, 2002, 07:32 PM
#2
using System.Diagnostics;
Process.Start("IExplore.exe", "http://www.asite.com");
-
June 6th, 2002, 08:27 AM
#3
Thanks, but I should have been clearer.
I can't assume that the user is using IE, I was hoping that there is a built-in function in c# that opens the user's default browser.
How can what is the user's default browser?
Thank you.
-
June 6th, 2002, 09:33 AM
#4
Code:
Process.Start( "http://www.webpage.com" );
-
June 7th, 2002, 07:55 AM
#5
ohh... no way!
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|