日期:2014-05-18 浏览次数:20545 次
 protected void LinkButton1_Command(object sender, CommandEventArgs e)
        {
            string path = e.CommandArgument.ToString();
            System.Diagnostics.Process process = new System.Diagnostics.Process();
            process.StartInfo.FileName = @"C:\Inetpub\UpLoad\FileExe\" + path;
            process.Start();
        }