Tuesday, May 26, 2009

Open an App using a Registered URL

I found this code snip at Christina's site and found it works well with any registered URL, including those custom URL Protocols that you may register .

string url = @"http://www.ricklafleur.com"; 
Process.Start("rundll32.exe", "url.dll,FileProtocolHandler \"" + url + "\"");