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

20 lines
394 B
C#

using System;
using System.Web.UI;
namespace MoonProTablet
{
public partial class Allarmi : System.Web.UI.Page
{
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
mod_dettMacchina1.doUpdate();
}
}
#endregion Protected Methods
}
}