Files
C.TRACK/MP-MAG/WebUserControls/cmp_PackListSel.ascx.cs
T
Samuele E. Locatelli b690b86aec update gestione PL Scanner
2020-12-29 17:01:17 +01:00

44 lines
977 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MP_MAG.WebUserControls
{
public partial class cmp_PackListSel : BaseUserControl
{
#region Public Properties
public int PackListID
{
get
{
int answ = 0;
int.TryParse(hfPackListID.Value, out answ);
return answ;
}
set
{
hfPackListID.Value = $"{value}";
lblPackListID.Text = $"{value}";
cmp_OrderList.PackListID = value;
}
}
#endregion Public Properties
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
PackListID = 0;
}
}
#endregion Protected Methods
}
}