Files
MoonPro.net/MP-MAG/SMART/elencoLotti.aspx.cs
T
2021-03-03 12:42:02 +01:00

42 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.SMART
{
public partial class elencoLotti : BasePage
{
#region Private Methods
private void Cmp_elencoLotti_eh_doRefresh(object sender, EventArgs e)
{
cmp_dettLotti.lotto = cmp_elencoLotti.LottoSel;
cmp_dettLotti.Visible = true;
}
private void Cmp_elencoLotti_eh_doReset(object sender, EventArgs e)
{
cmp_dettLotti.lotto = "0";
cmp_dettLotti.Visible = false;
}
#endregion Private Methods
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
cmp_dettLotti.Visible = false;
}
cmp_elencoLotti.eh_doRefresh += Cmp_elencoLotti_eh_doRefresh;
cmp_elencoLotti.eh_doReset += Cmp_elencoLotti_eh_doReset;
}
#endregion Protected Methods
}
}