49 lines
964 B
C#
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();
|
|
}
|
|
}
|
|
} |