using AppData; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; namespace NKC_WF.site { public partial class KittingSmartAdv : BasePage { protected void Page_Load(object sender, EventArgs e) { if (!Page.IsPostBack) { ((SiteMaster)this.Master).showSearch = false; doUpdate(); } } private void cmp_kittingSmart_eh_doRefresh(object sender, EventArgs e) { } /// /// PéackList corrente... /// public int PackListID { set { hfPackListID.Value = value.ToString(); } get { int answ = 0; int.TryParse(hfPackListID.Value, out answ); return answ; } } /// /// Aggiorna componente principale e child components /// private void doUpdate() { setCurrData(); } /// /// Imposta dati correnti (Bunk / Sheet) /// private void setCurrData() { // recupero PackList var currPL = ComLib.getCurrPackList(); if (currPL != null) { PackListID = currPL.PackListID; } } } }