我尝试打印PDF而不在adobereader中打开。文件打印成功,但adobereader打开为窗口。我想保持关闭状态那个窗口。
这是我的代码..
ProcessStartInfo info = new ProcessStartInfo(System.Web.HttpContext.Current.Server.MapPath("~/Reports/invPrnt.pdf"));
info.Verb = "Print";
info.CreateNoWindow = true;
info.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(info);