Files
MoonPro.net/MP-MAG/WebUserControls/cmp_printLottoOUT.ascx.cs
2020-12-31 10:35:24 +01:00

46 lines
901 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_printLottoOUT : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
/// <summary>
/// Num ODC richiesti
/// </summary>
public int numUdc
{
get
{
int answ = 0;
int.TryParse(txtNumUDC.Text, out answ);
return answ;
}
}
/// <summary>
/// Qta Totale richiesta (per il totale UDC)
/// </summary>
public int qtaTot
{
get
{
int answ = 0;
int.TryParse(txtQtaTot.Text, out answ);
return answ;
}
}
protected void lbtPrintOUT_Click(object sender, EventArgs e)
{
// sollevo evento richiesta...
raiseEvent();
}
}
}