62,266
社区成员
发帖
与我相关
我的任务
分享
ProcessStartInfo p = new ProcessStartInfo();
p.WindowStyle = ProcessWindowStyle.Hidden;
p.ErrorDialog = false;
p.CreateNoWindow = true;
string s = Server.MapPath("~/flash/flashpaper.bat").ToString();
string t = Server.MapPath("~/flash/a.swf").ToString() + " " + Server.MapPath("~/flash/a.docx ").ToString();
Process.Start(s , t);