Files
C.TRACK/MP-MAG/WebUserControls/cmp_SelUdc.ascx.cs
T
Samuele E. Locatelli e11f6d6a70 reord user mod
2020-12-29 18:30:30 +01:00

44 lines
874 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_SelUdc : BaseUserControl
{
#region Public Properties
public string UDC
{
get
{
return hfUDC.Value; ;
}
set
{
hfUDC.Value = value;
lblUDC.Text = value;
#if false
cmp_OrderList.PackListID = value;
#endif
}
}
#endregion Public Properties
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
UDC = "";
}
}
#endregion Protected Methods
}
}