求助.net中打开进程的实现,谢谢

解决方案 »

  1.   

    参见
    Process类的静态方法。
      

  2.   

    Process.Start(new ProcessStartInfo(filename,para));
      

  3.   

    System.Diagnostics.Process ps=new Process();
    ps.StartInfo.FileName=@"c:\cwj\drsmart.exe"; //这个c:\cwj\drsmart.exe 改成你的就行了
    ps.Start();
      

  4.   

    在button的事件中加上以下代码就可以了System.Diagnostics.Process ps=new Process();
    ps.StartInfo.FileName=@"c:\cwj\drsmart.exe"; //这个c:\cwj\drsmart.exe 改成你的就行了
    ps.Start();
      

  5.   

    System.Diagnostics.Process ps=new Process();
    ps.StartInfo.FileName=@"c:\cwj\drsmart.exe"; //这个c:\cwj\drsmart.exe 改成你的就行了
    ps.Start();
    同意楼上的
      

  6.   

    web应用程序下Process类是不可用的啊!!谢谢各位大哥们了