Files
MoonPro.net/MP-TAB/Scarti.aspx.cs
T
2020-09-14 21:25:58 +02:00

22 lines
466 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace MoonProTablet
{
public partial class Scarti : BasePage
{
protected void Page_Load(object sender, EventArgs e)
{
mod_regScarti1.eh_newVal += Mod_regScarti1_eh_newVal;
}
private void Mod_regScarti1_eh_newVal(object sender, EventArgs e)
{
mod_elencoScarti.doUpdate();
}
}
}