fix "doppio giro" barcode

This commit is contained in:
Samuele E. Locatelli
2020-07-24 19:11:57 +02:00
parent d63a9b914a
commit 104f46b0d6
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -1,6 +1,7 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="cmp_barcode.ascx.cs" Inherits="NKC_WF.WebUserControls.cmp_barcode" %>
<div class="form-group bigText">
<asp:TextBox runat="server" ID="txtBarcode" class="form-control" autofocus="true" AutoPostBack="True" OnTextChanged="txtBarcode_TextChanged"></asp:TextBox>
<%--AutoPostBack="True"--%>
<asp:TextBox runat="server" ID="txtBarcode" class="form-control" autofocus="true" OnTextChanged="txtBarcode_TextChanged"></asp:TextBox>
<asp:Label ID="lblOutput" runat="server" for="txtBarcode" Width="100%" />
<asp:HiddenField ID="hfLastCmd" runat="server" />
</div>
+1 -1
View File
@@ -72,7 +72,7 @@ namespace NKC_WF.WebUserControls
}
set
{
txtBarcode.Text = "";
txtBarcode.Text = value;
}
}
/// <summary>