Files
C.TRACK/MP-MAG/WebUserControls/cmp_printLottoOUT.ascx.cs
T
Samuele E. Locatelli 2e496a0715 Ok aggiunta print in coda
2020-03-16 16:04:06 +01:00

34 lines
679 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 etichette richieste
/// </summary>
public int num2print
{
get
{
int answ = 0;
int.TryParse(txtNumPrint.Text, out answ);
return answ;
}
}
protected void lbtPrintSemilav_Click(object sender, EventArgs e)
{
// sollevo evento richiesta...
raiseEvent();
}
}
}