-1

I need to open a webpage I created in php, in my C # application.

1 Answers1

0

This is a very basic example using C#, I hope this can help you.

If you want to open a link in your default browser, you can add this simple code:

Process.Start("http://YourURL");

If you want to open your link in another browser, you can use this code:

System.Diagnostics.Process.Start("firefox.exe", "http://YourURL");

And you can visit these posts:

Community
  • 1
  • 1
Orlando Herrera
  • 3,481
  • 1
  • 34
  • 44