How to link to webpage?

Here's the scenario..
On a windows form, when I click on a menu, the menu will open a website...
Assume I already burn the whole coding and website to a CD, how do I make sure that the menu will link properly to the website..
What is the appropriate coding for doing this
Plz advise...


Answer this question

How to link to webpage?

  • jregent

    I'm not quite sure if this is your problem...  but just in case!!!

    I too did this not to long ago, I built an HTML file, and made it have help topics and a tutorial.
    I wanted my app to be able to open it.  Here's how I did it.  (I had the HTML file in a subfolder of my app)

    System.Diagnostics.Process.Run(Appliaction.StartupPath + "/help/help.html");

     -- don't foget to put that in a try...catch block just in case!!!!!  



  • Greg4408

    use the Process class

            System.Diagnostics.Process.Start("url")

  • How to link to webpage?