Hello,
I am trying to print in an ASP.Net website using the code below and the printing is VERY slow. It takes about 5 minutes for the first document but then subsequent docs are printed without delay:
The printer is Xerox 5645. The server OS on which asp.net website is hosted is win 2008 x64.
Thanks
PrintDocument document = new PrintDocument();
document.PrinterSettings.PrinterName =
Settings.PrinterName;
document.PrintPage += dele ...
Go to the complete details ...