using System;
using System.Collections.Generic;
using System.Text;
using System.Diagnostics;
namespace sufeiNetTools
{
public static class OpenIeHelper
{
/// <summary>
/// 打開一個網(wǎng)站
/// </summary>
/// <param name="url">網(wǎng)址</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();
}
}
}