环境是.net winForm
System.Diagnostics.Process.Start(@"某个网址"),总是使用最后一次打开的ie窗口。请问如何新开一个ie窗口?

解决方案 »

  1.   

    trySystem.Diagnostics.Process.Start(@"http://www.baidu.com", "_blank");
      

  2.   

    System.Diagnostics.Process.Start("iexplore.exe","http://www.163.com");
      

  3.   

    实践证明zhangliu_521提供的方法正确
      

  4.   

    不知能否更进一步,是否有不限于iexplore.exe的写法?
      

  5.   

    为了弥补上面过失,给楼主这个System.Diagnostics.Process.Start(@"D:\freeware\Maxthon\Maxthon.exe", "http://www.csdn.net");或者
    Process p = new Process();
    p.StartInfo.FileName = @"D:\freeware\Maxthon\Maxthon.exe";
    p.StartInfo.Arguments = @"http://www.csdn.net";
    p.Start();