using
System;
using
System.Collections.Generic;
using
System.Text;
using
System.Diagnostics;
namespace
sufeiNetTools
{
public
static
class
OpenIeHelper
{
/// <summary>
/// 打开一个网站
/// </summary>
/// <param name="url">网址</param>
public
static
void
OpenIe(
string
url)
{
ProcessStartInfo startInfo =
new
ProcessStartInfo(
"IExplore.exe"
);
startInfo.Arguments = url;
Process process1 =
new
Process();
process1.StartInfo = startInfo;
process1.Start();
}
}
}