C# .NET - Print Multiple Chques at once
Asked By Rajiv Gogia on 11-Feb-13 12:02 PM
I want to print several cheques in asp.net web application. The number of records are not fixed, depending on the query result.
for ex i want to fetch details of two employees in the given format :
Output Needed :
Name - XYZ
Address - ABC
Contact - 1111111111
-------------------------------
Name - XYZ
Address - ABC
Contact - 1111111111
Robbe Morris replied to Rajiv Gogia on 11-Feb-13 12:04 PM
If you are issuing the print request "server side", you'll need to create a Printer on the server that points to your network printer. That will enable the anonymous user account to have permission to issue the request. You'd want to create a new PrintDocument instance and process a print request for each check.