hi ,
I have created asp.net web application using printing program it's working in local but IIS not working. Print SaveAs popup is not open. Please help.
sample code:
ProcessStartInfo processstarinfo = new ProcessStartInfo();
string processpath = System.AppDomain.CurrentDomain.BaseDirectory + "TaxInvoice" + sysname.Trim() + ".txt";
processstarinfo.FileName = processpath;
processstarinfo.Verb = "Print";
processstarinfo.WindowStyle = ProcessWindowStyle.Hidden;
processstarinfo.CreateNoWindow = true;
Process p1 = new Process();
p1.StartInfo = processstarinfo;
p1.Start();
5 Replies
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Nanddeep NachanPosted Jun 21, 2018, 4:33 AM
anbu sPosted Jun 27, 2018, 4:04 AM
anbu sPosted Jun 21, 2018, 4:24 AM
anbu sPosted Jun 20, 2018, 6:29 AM
Nanddeep NachanPosted Jun 20, 2018, 1:07 AM