protected void Button1_Click(object sender, EventArgs e)
    {
        System.Diagnostics.Process p = new System.Diagnostics.Process();
        System.Diagnostics.ProcessStartInfo pinfo = new System.Diagnostics.ProcessStartInfo(@"E:\FPTree.exe");
        //pinfo.Arguments="   ";如果有参数需要设置  
        p.StartInfo = pinfo;
        p.Start();
    }
posted on 2009-05-20 10:47  D.Henry  阅读(241)  评论(0编辑  收藏  举报