47 lines
890 B
C#
47 lines
890 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_creaLottoOUT : BaseUserControl
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
/// <summary>
|
|
/// Num ODC richeisti
|
|
/// </summary>
|
|
public int numUdc
|
|
{
|
|
get
|
|
{
|
|
int answ = 0;
|
|
int.TryParse(txtNumUDC.Text, out answ);
|
|
return answ;
|
|
}
|
|
}
|
|
/// <summary>
|
|
/// Qta Originale richiesta
|
|
/// </summary>
|
|
public int qtaOrig
|
|
{
|
|
get
|
|
{
|
|
int answ = 0;
|
|
int.TryParse(txtQtaOrig.Text, out answ);
|
|
return answ;
|
|
}
|
|
}
|
|
|
|
protected void lbtPrintSemilav_Click(object sender, EventArgs e)
|
|
{
|
|
// sollevo evento richiesta...
|
|
raiseEvent();
|
|
}
|
|
}
|
|
} |