I am using JsBarcode

我正在使用JsBarcode

I am trying to display a barcode image which was generated from textbox's value.

我正在尝试显示从文本框的值生成的条形码图像。

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <script src="JsBarcode.all.js"></script>
    <script>
        function textToBase64Barcode(text) {
            var canvas = document.createElement("canvas");
            JsBarcode(canvas, text, { format: "CODE39" });
            return canvas.toDataURL("image/png");
        }
        function getBarcode() {
            var input = document.getElementById('<%= txtInput.ClientID %>').value;
            document.getElementById("image").setAttribute("src", textToBase64Barcode(input));
        }
  </script>
</head>
<body>
    <form id="form1" runat="server">
        <img id="image" />
        <br />
        <asp:TextBox ID="txtInput" runat="server"></asp:TextBox>
        <br />
        <asp:Button ID="btnSubmit" runat="server" Text="Show Barcode" OnClientClick="getBarcode()" />
        <br />   
    </form>
</body>
</html>

Problem I have is that the Barcode appears and disappear right away. How do I:

我遇到的问题是条形码会立即出现并消失。我如何能:

  • Keep the image barcode appearing on the page
  • 保持图像条形码出现在页面上

  • Retrieve the image Base64 value in the code behind (so I can save it to a database)
  • 在后面的代码中检索图像Base64值(所以我可以将它保存到数据库中)

2 个解决方案

#1


0

The barcode dissapears because when the button is clicked the page performs a postback, even if there is no action associated with the button. You could disable the button but you won't get the base64 string of the barcode in code behind.

条形码消失,因为当单击按钮时,即使没有与按钮关联的操作,页面也会执行回发。您可以禁用该按钮,但不会在后面的代码中获取条形码的base64字符串。

So you could do something like this:

所以你可以这样做:

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>

    <script type="text/javascript" src="JsBarcode.all.js"></script>
    <script type="text/javascript" >
        function textToBase64Barcode(text) {
            var canvas = document.createElement("canvas");
            JsBarcode(canvas, text, { format: "CODE39" });
            return canvas.toDataURL("image/png");
        }
        function getBarcode() {
            var input = document.getElementById('<%= txtInput.ClientID %>').value;
            document.getElementById("image").setAttribute("src", textToBase64Barcode(input));

            //set the base64 value in a hiddenfield so the code-behind can process it on postback
            document.getElementById('<%= HiddenField1.ClientID %>').value = textToBase64Barcode(input);
        }
  </script>
</head>
<body>
    <form id="form1" runat="server">
        <img id="image" />
        <br />
        <asp:TextBox ID="txtInput" runat="server"></asp:TextBox>
        <br />
        <asp:Button ID="btnSubmit" runat="server" Text="Show Barcode" OnClientClick="getBarcode()" OnClick="btnSubmit_Click" />
        <br />

        <!-- hiddenfield containing the base64 value -->
        <asp:HiddenField ID="HiddenField1" runat="server" />

    </form>
</body>
</html>

And in the code behind:

并在代码背后:

    protected void btnSubmit_Click(object sender, EventArgs e)
    {
        //you can now do something with the base64 value
        string base64 = HiddenField1.Value;

        //call the javascript code when the postback is done so the barcode is generated again
        ScriptManager.RegisterStartupScript(Page, Page.GetType(), "reloadBarcode", "getBarcode()", true);
    }

更多相关文章

  1. 我可以禁用“后退”按钮浏览器功能吗?
  2. 当页面上有多个按钮时,按钮样式在页面加载上有厚的边框
  3. 如何禁用IE和Firefox中的后退按钮? [重复]
  4. 使用Jquery Ajax更改按钮的颜色(从外部PHP文件接收颜色)
  5. 在单选按钮上选中/取消选中,加载/隐藏部分视图
  6. 彻底解决IE8和IE9下ewebeditor上按钮无效的方法
  7. 如何在单击按钮时将桌面应用程序导航到系统中设置的默认邮件提供
  8. 如何在选择单选按钮时显示文本字段
  9. bootstrap入门【按钮式下拉菜单,输入框组】

随机推荐

  1. 如何制作可折叠的bootstrap导航栏?
  2. JavaScript基础练习(一)
  3. 未为添加到dom的行选择所有复选框列
  4. 使用没有后端脚本的Angularjs上传文件(例
  5. 最大调用堆栈大小超过了堆- redux
  6. 个人总结JavaScript正则笔记
  7. 如何将razor变量传递给js
  8. 通过javaScript或jQuery修改CSS Flexbox
  9. javascript面向对象技术基础
  10. 在Android上使用离子崩溃而不是ios构建的