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
///
/// Aggiorno visualizzzazione x update
///
///
///
private void Mod_turni1_eh_updated(object sender, EventArgs e)
{
mod_dettTurni.DataBind();
}
#endregion Private Methods
}
}