Files
NKC/NKC_WF/WebUserControls/cmp_searchBin.ascx.cs
T
Samuele E. Locatelli b9a32fc47b Fix search x BIN
2020-08-27 18:02:34 +02:00

46 lines
912 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_searchBin : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// Bin selezionato
/// </summary>
public int BinID
{
get
{
int answ = 0;
int.TryParse(hfBinID.Value, out answ);
return answ;
}
set
{
hfBinID.Value = value.ToString();
}
}
protected bool binOk
{
get
{
return BinID > 0;
}
}
public void doUpdate()
{
frmView.DataBind();
}
}
}