44 lines
874 B
C#
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
|
|
}
|
|
} |