.net - Open a URL from Windows Forms -


i'm trying provide link company's website windows form. want behaved , launch using user's preferred browser.

what best way open url in user's default browser windows forms application?

this article walk through it.

short answer:

processstartinfo sinfo = new processstartinfo("http://mysite.com/");   process.start(sinfo); 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -