Mega Code Archive

 
Categories / C# / Network
 

Show Html Page in String with Process

namespace Sedge.Core.Utils {   public class WebHelper   {     public static void ShowHtml(string page)     {       System.Diagnostics.Process process =         new System.Diagnostics.Process { StartInfo = { FileName = page } };       process.Start();     }   } }