firing off a web page...

  • Thread starter Thread starter Daniel Bass
  • Start date Start date
D

Daniel Bass

Is there a ShellExecute method for c#???

How do i launch a web page from my code with the default browser??

Thanks.
Dan.
 
Hi ,

Use the System.Diagnostics.Process class and the Start() method (from msdn):
Starts a process resource by specifying the name of a document or
application file


Hope this help,
 
Thanks!

:o)

Ignacio Machin said:
Hi ,

Use the System.Diagnostics.Process class and the Start() method (from msdn):
Starts a process resource by specifying the name of a document or
application file


Hope this help,
 
Back
Top