ab3ba0881e
- refresh dettaglio macchina - gestione eventi disposed
43 lines
966 B
C#
43 lines
966 B
C#
using System;
|
|
using System.Web.UI;
|
|
|
|
namespace MoonProTablet
|
|
{
|
|
public partial class PianoProd : BasePage
|
|
{
|
|
#region Protected Methods
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!Page.IsPostBack)
|
|
{
|
|
mod_dettMacchina1.doUpdate();
|
|
Session["TipoLink"] = "DetMacc";
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// evento timer
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
protected void Timer1_Tick(object sender, EventArgs e)
|
|
{
|
|
mod_dettMacchina1.doUpdate();
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
|
|
#region Private Methods
|
|
|
|
private void mod_confProd1_eh_newVal(object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
private void mod_confProd1_eh_reset(object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
#endregion Private Methods
|
|
}
|
|
} |