35 lines
779 B
C#
35 lines
779 B
C#
using SteamWare;
|
|
using System;
|
|
using System.Web.UI;
|
|
|
|
namespace MoonProTablet
|
|
{
|
|
public partial class PianoProd : BasePage
|
|
{
|
|
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();
|
|
}
|
|
}
|
|
} |