Files
NKC/NKC_WF/WebUserControls/cmp_barcode.ascx.cs
T
2019-08-28 14:06:46 +02:00

34 lines
579 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace NKC_WF.WebUserControls
{
public partial class cmp_barcode : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void txtBarcode_TextChanged(object sender, EventArgs e)
{
raiseEvent();
}
public string inputAcquired
{
get
{
return txtBarcode.Text.Trim();
}
set
{
txtBarcode.Text = "";
}
}
}
}