Click here to Skip to main content
15,885,910 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
Can anyone suggest me how to print text on cheque using asp.net.
I have searched in google but i didnt find the optimzed solution. Can any one suggest me something to initiate the project.
Posted
Updated 8-Dec-13 21:24pm
v3
Comments
Soumitra Mithu 9-Dec-13 2:14am    
Are you asking about Banking Cheque Endorsement?
Bhagavan Raju M 9-Dec-13 2:16am    
Yup
Ganesh KP 9-Dec-13 2:22am    
Do u want to print complete cheque or you just want to print in the blanks provided in the cheque.

To print the complete cheque, it is easier when printing the blanks on the existing cheque because, alignment will make u cry and dry to get a perfect print.
Bhagavan Raju M 9-Dec-13 2:24am    
I want to print blanks in the cheque.
Ganesh KP 9-Dec-13 2:26am    
if it is a normal usb printing then this link might helps you http://stackoverflow.com/questions/6911258/sending-data-to-usb-printer-in-c

Printing from a web application will not print properly and will spoil the checks. If you have to print it from the web, then you should generate a pdf file and the user will print from the pdf.
And you find a project here that would match your requirement:
Printing Bank Cheques in c#[^]
Read the discussions carefully, you will find it then.
 
Share this answer
 
What you need is a way to fully control printing at the client side from ASP.NET so you can send raw commands (e.g. ESC/P if your printer does support it) and these are the two solutions I can think of:

jZebra or qz-print[^] which requires JAVA VM to be installed at each client machine. Client Cross platform and open-source

WebClientPrint[^] which requires to install a small utility at each client machine. Client cross platform but commercial

Using any of these you'll have full control on the client printer for sending raw commands. HTH,
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900