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)
{
}
///
/// Num ODC richiesti
///
public int numUdc
{
get
{
int answ = 0;
int.TryParse(txtNumUDC.Text, out answ);
return answ;
}
}
///
/// Qta Totale richiesta (per il totale UDC)
///
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();
}
}
}