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
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
you can open the internal page via directory path in your "Process.Start" function.
System.Diagnostics.Process.Start("mk.html");