黑客程序(asp.net网页调用exe程序) 2013

来源:互联网 发布:怎么变成大小为1矩阵 编辑:程序博客网 时间:2024/05/15 23:52
protected void Button1_Click(object sender, EventArgs e)
    {
        System.Diagnostics.Process p = new System.Diagnostics.Process();
        p.StartInfo.FileName = @"D:\install\FeiQ.exe";//需要启动的程序名 
        p.StartInfo.Arguments = "";//启动参数 
        try
        {
            p.Start();//启动 
            if (p.HasExited)//判断是否运行结束 
            {
                p.Kill();
            }
        }
        catch
        {
           
        }
    }
0 0
原创粉丝点击