Files
MoonPro.net/MP-TAB/Controlli.aspx.cs
T
2018-06-28 13:28:08 +02:00

30 lines
740 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using SteamWare;
namespace MoonProTablet
{
public partial class Controlli : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
mod_controlliProd.eh_newVal += Mod_controlliProd_eh_newVal;
mod_controlliProd.eh_reset += Mod_controlliProd_eh_reset;
}
private void Mod_controlliProd_eh_reset(object sender, EventArgs e)
{
mod_elencoControlli.doUpdate();
}
private void Mod_controlliProd_eh_newVal(object sender, EventArgs e)
{
// ricarica pagina...
Response.Redirect(devicesAuthProxy.pagCorrente);
}
}
}