Archive for April 15th, 2008
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.
