0

I need to popup internal page (within project folder) when pressing button, I already used the code

System.Diagnostics.Process.Start("http://www.mkf.com");

but I need to run internal page like (mk.html), how can I doing this

Lennart
  • 9,657
  • 16
  • 68
  • 84

1 Answers1

0

you can open the internal page via directory path in your "Process.Start" function.

System.Diagnostics.Process.Start("mk.html");