Winform 调用系统默认浏览器打开网页
using System;using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
System.Diagnostics.ProcessStartInfo Info = new System.Diagnostics.ProcessStartInfo("http://www.abc.com");
System.Diagnostics.Process Pro = System.Diagnostics.Process.Start(Info);
}
}
} 這應該做的:Process.Start(URL) t304pk 发表于 2013-6-12 06:13
這應該做的:
这个精简有效,我就是这么用的 我是这样的。
Process.Start("http://www.abc.com/");
页:
[1]