Files
MoonPro.net/MP-TAB/PianoProd.aspx.cs
T
Samuele E. Locatelli 1dd2a79b9d Impostata pagina PianoProd
2018-10-03 23:50:10 +02:00

49 lines
964 B
C#

using SteamWare;
using System;
using System.Web.UI;
namespace MoonProTablet
{
public partial class PianoProd : System.Web.UI.Page
{
/// <summary>
/// idx macchina selezionata
/// </summary>
public string idxMacchina
{
get
{
return memLayer.ML.StringSessionObj("IdxMacchina");
}
set
{
memLayer.ML.setSessionVal("IdxMacchina", value);
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
Session["TipoLink"] = "DetMacc";
}
}
void mod_confProd1_eh_reset(object sender, EventArgs e)
{
}
void mod_confProd1_eh_newVal(object sender, EventArgs e)
{
}
/// <summary>
/// evento timer
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
protected void Timer1_Tick(object sender, EventArgs e)
{
mod_dettMacchina1.doUpdate();
}
}
}