如何将条码扫描仪集成到 ASP.NET Web 应用程序中?

发布于 2024-08-20 18:07:03 字数 91 浏览 3 评论 0原文

  • 如何将条形码扫描仪集成到 ASP.NET Web 应用程序中?

  • 有任何开源库可以做到这一点吗?

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

  • Any open source library for doing it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抚你发端 2024-08-27 18:07:03

如果您需要将条形码写入文本框,则无需执行额外的工作。条形码扫描仪模拟按键事件。甚至您可以处理 window.keypress 事件来挂钩前导码和后导码字符。这样客户端就不需要关注特定的文本框。

否则读者使用硬件驱动程序(?不知道存在这样的供应商?),那么您将需要一个 ActiveX 对象来包装该库。

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.

蓝颜夕 2024-08-27 18:07:03

您(可能)不会在服务器上安装条形码扫描仪,而是在用户计算机上安装条形码扫描仪。

条形码扫描仪通常会读取条形码、理解它,并使计算机能够理解通过键盘输入的读取数据。因此,您只需将该数据发送到服务器进行处理即可。

编辑:我没有读取条形码的经验,您可以查看此链接以了解如何创建它们:C# 条形码生成器 Web 服务。也许您应该为这两项任务购买一个组件。

You (probably) will not have a barcode scanner into your server, but on user computers.

A barcode scanner typically reads a barcode, understand it, and to make that read data to be understood by your computer as entered by keyboard. So you'll just need to send that data to server to be processed.

EDIT: I don't have experience on reading barcodes, by you can look into this link to find how to create them: C# Barcode Generator WebService. Maybe you should buy one component for both tasks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文