firing off a web page...

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.
 
V

Val Savvateev

Check out ".NET equivelent of WinExec or ShellExec APIs?" thread in this
group.
 
I

Ignacio Machin

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,
 
D

Daniel Bass

Thanks!

:blush:)

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,
 

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

Top