53 lines
1.1 KiB
C#
53 lines
1.1 KiB
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_elencoUDC : BaseUserControl
|
|
{
|
|
#region Public Properties
|
|
|
|
public string AlSel
|
|
{
|
|
get
|
|
{
|
|
return cmp_UDCList.AlSel;
|
|
}
|
|
set
|
|
{
|
|
cmp_UDCList.AlSel = value;
|
|
}
|
|
}
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected void lbtResetAL_Click(object sender, EventArgs e)
|
|
{
|
|
MagDataLayerObj.taEA2U.resetAL(AlSel);
|
|
cmp_UDCList.doUpdate();
|
|
raiseReset();
|
|
}
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
lbtResetAL.DataBind();
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
|
|
#region Internal Methods
|
|
|
|
internal void doUpdate()
|
|
{
|
|
cmp_UDCList.doUpdate();
|
|
}
|
|
|
|
#endregion Internal Methods
|
|
}
|
|
} |