30 lines
740 B
C#
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);
|
|
}
|
|
}
|
|
} |