首页 > 编程 > C# > 正文

C#Windows应用程序中打开网址的方法

2023-05-17 11:41:52
字体:
来源:转载
供稿:网友

 在C#的Windows应用程序中打开网址需使用System.Diagnostics命名空间中的Process类,下面是源代码:

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

或者使用下面的形式:

System.Diagnostics.Process.Start(@"C:/Program Files/Internet Explorer/IEXPLORE.EXE","http://www.VeVb.com");

上面两种形式中,第一种是以默认浏览器打开指定的网址

第二种是以指定的IE浏览器打开网址 。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表