请问如何在c/s模式中启动客户端ie,或如何在c/s的项目中嵌套ie浏览器?

解决方案 »

  1.   

    Process myProcess = new Process();
                
    try
    {
    myProcess.StartInfo.Verb = "IExplore.exe";
    myProcess.StartInfo.CreateNoWindow = true;
    myProcess.Start();
    }
    catch 
    {...} 能启动IE       至于 你说的嵌套 俺就不明白了。
      

  2.   

    http://dotnet.aspx.cc/ShowDetail.aspx?id=9D49B3EF-0F91-421B-841F-5D9A000BDA04
      

  3.   

    LoveCleverDog,按照你的方法,IE可以启动了,不过是设置myProcess.StartInfo.FileName="IExplore.exe";
    另外,我想问一下,我要传给IE的URL在那个属性中设呢?多谢。
      

  4.   

    net_lover兄,感谢你给出的嵌套IE的方法,稍后我会结贴给分。