winfrom打开网页的方法

方法一:

Uri uri = new Uri("http://www.163.com");
this.webBrowser1.Url = uri;

方法二:

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

原文地址:https://www.cnblogs.com/wuhuisheng/p/2074502.html