Receipt Printer cannot print HTML / ASP file

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hendylee
    New Member
    • May 2010
    • 1

    Receipt Printer cannot print HTML / ASP file

    Dear brothers and sisters,

    Very grateful if you can assist me, as now i m stuck in a project, i develop an ASP based POS system, as i using asp to generate the receipt, but then once i tried to print the receipt, the receipt will show weird @@@@@@@
    and squeeze all the forms together.

    I tried Samsung Bixolon, Epson TM880 and Lukhan D30 dot matrix receipt printer, all of these printer cannot support to print html and asp format file, so is it anyway for me to create like VB tray to print direct to the printer? as i m not good in VB script, therefore really need your guys help

    thanks

    Hendy
  • jhardman
    Recognized Expert Specialist
    • Jan 2007
    • 3405

    #2
    ASP can produce nearly any output, although we typically produce HTML output, and plain text is extremely easy, we can even do binary output. I'd suggest outputting plain text just to see if it prints:
    Code:
    response.write "hello world" & vbNewLine
    response.write "line 2" & vbNewLine
    let me know if this works.

    Jared

    Comment

    Working...