How to integrate barcode scanner into an ASP.NET Web application?

后端 未结 2 429
渐次进展
渐次进展 2020-12-19 22:59
  • How to integrate barcode scanner into an ASP.NET Web application?

  • Any open source library for doing it?

2条回答
  •  孤城傲影
    2020-12-19 23:14

    If you need the barcode written into a textbox, you'll not need extra work to do. Barcode scanners simulate keypress event. Even you can handle window.keypress event to hook the preamble and postamble characters. That way the client do not need to focus on the specific textbox.

    Or else the reader uses a hardware driver (? don't know such vendors exists ?) , then you'll need an ActiveX object to wrap the library.

提交回复
热议问题