46 lines
912 B
C#
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();
|
|
}
|
|
}
|
|
} |