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

Re: Launch a browser in C# by William

William
Mon Sep 15 08:07:00 CDT 2003

System.Diagnostics.Process.Start("C:\\Program Files\\Internet
Explorer\\IExplore.exe", http://www.infoprogroup.com/contact/contact.htm)

This is it in VB.NET...you can tranlate it easy enough.



Cheers,



Bill

"Giulio" <giulio_santorini@yahoo.it> wrote in message
news:08a901c37b86$db604760$a101280a@phx.gbl...
> Hi,
> I would like to view an HTML file in a browser, should I
> do it in C#?
> Thanks,
> Giulio



Re: Launch a browser in C# by Gabriele

Gabriele
Mon Sep 15 08:07:32 CDT 2003

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

"Giulio" <giulio_santorini@yahoo.it> wrote in message
news:08a901c37b86$db604760$a101280a@phx.gbl...
> Hi,
> I would like to view an HTML file in a browser, should I
> do it in C#?
> Thanks,
> Giulio



Re: Launch a browser in C# by Gurudev

Gurudev
Tue Sep 16 00:09:47 CDT 2003

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

--
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
Gurudev
Software Engineer, NetKraft,
Bangalore, India.
e-me: gurudev.p@net-kraft.com
____________________________________________
"William Ryan" <dotnetguru@comcast.nospam.net> wrote in message
news:uaiurn4eDHA.1820@TK2MSFTNGP10.phx.gbl...
> System.Diagnostics.Process.Start("C:\\Program Files\\Internet
> Explorer\\IExplore.exe", http://www.infoprogroup.com/contact/contact.htm)
>
> This is it in VB.NET...you can tranlate it easy enough.
>
>
>
> Cheers,
>
>
>
> Bill
>
> "Giulio" <giulio_santorini@yahoo.it> wrote in message
> news:08a901c37b86$db604760$a101280a@phx.gbl...
> > Hi,
> > I would like to view an HTML file in a browser, should I
> > do it in C#?
> > Thanks,
> > Giulio
>
>