在云那方

首页 新随笔 联系 订阅 管理
//引用using System.Diagnostics;
  private void ExecUrl(string url)
  
{
   ProcessStartInfo startInfo 
= new ProcessStartInfo("IExplore.exe");   
   startInfo.WindowStyle 
= ProcessWindowStyle.Hidden;//设置IE隐藏或最大化,最小化   
   startInfo.Arguments = url; 
   Process.Start(startInfo);
  }
 
posted on 2008-07-04 11:50  Rich.T  阅读(629)  评论(0编辑  收藏  举报