Files
Samuele Locatelli ab3ba0881e Update x gestione
- refresh dettaglio macchina
- gestione eventi disposed
2022-09-28 19:10:32 +02:00

36 lines
863 B
C#

using System;
using System.Web.UI;
namespace MoonProTablet
{
public partial class Turni : BasePage
{
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
mod_dettMacchina1.doUpdate();
Session["TipoLink"] = "EditMacch";
}
mod_turni1.eh_updated += Mod_turni1_eh_updated;
}
#endregion Protected Methods
#region Private Methods
/// <summary>
/// Aggiorno visualizzzazione x update
/// </summary>
/// <param name="sender"></param>
/// <param name="e"></param>
private void Mod_turni1_eh_updated(object sender, EventArgs e)
{
mod_dettTurni.DataBind();
}
#endregion Private Methods
}
}