简体   繁体   中英

How to print from android web browser to Bluetooth thermal printer?

I'm using the Asp.Net MVC application to print the invoice to a Bluetooth printer from a web browser.

Can anyone help with this, I have an invoice page and when the user clicks the print button I want to show all the printer over the.network line and connected the printer with Bluetooth where the user can select a printer and give the print command.

This is not possible on ASP.NET MVC alone because it is done on the server-side. To print on Android, you can do this using the Bluetooth adapter. My idea for printing on ASP.NET is to get the invoice as a string in javascript and print it.

var printWindow = window.open();
  printWindow.document.open('text/plain')
  printWindow.document.write(zpl);
  printWindow.document.close();
  printWindow.focus();
  printWindow.print();
  printWindow.close();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM