winform打开网页

在winform中,实现超级链接的功能,常用两种方法: 
1. LinkLabel控件。 
2. 启动浏览器,打开网页 
代码如下:
使用命名空间 System.Diagnostics;
Process proc = new Process(); 
proc.StartInfo.FileName ="iexplore.exe";; //firefox.exe or opera.exe 
proc.StartInfo.Arguments = "http://www.shenghuoba.com.cn";; 
proc.Start();
原文地址:https://www.cnblogs.com/kevinzhwl/p/3878920.html