TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
anbu s
NA
652
41.1k
iis printing process is not working
Jun 20 2018 12:11 AM
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();
Reply
Answers (
5
)
Exceptions in c# code in web development
Bind Multiple dropdwnlist in mvc?