c# open an URL programatically
by brian on Apr.15, 2008, under .NET, c#, coding
Here is the easy way to open the browser from a c# .Net application.
string url="http://blog.bee-eee.com"; System.Diagnostics.Process.Start(url);
There you go. Pretty easy uh.
No comments for this entry yet...
Leave a Reply
You must be logged in to post a comment.
