Open web browser


/ Published in: C#
Save to your folder(s)



Copy this code and paste it in your HTML
  1. System.Diagnostics.Process process = new System.Diagnostics.Process();
  2. process.StartInfo.FileName = "http://www.google.com";
  3. process.Start();

Report this snippet


Comments


You need to login to view comments.