Launch a browser in C#

  • Thread starter Thread starter Giulio
  • Start date Start date
G

Giulio

Hi,
I would like to view an HTML file in a browser, should I
do it in C#?
Thanks,
Giulio
 
Hi,

One option is the Process.Start() method, for example:

Process.Start(myURL);

Please see the documentation of the Process class for more details.

Regards,

Gabriele
 
in c# just append a ; to it :-)

--
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Gurudev
Software Engineer, NetKraft,
Bangalore, India.
e-me: (e-mail address removed)
____________________________________________
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top