Files
XPS/XPS/detComm.aspx.cs
T
2008-11-11 16:32:08 +00:00

32 lines
910 B
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class detComm : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
mod_dettComm1.eh_selValore += new EventHandler(mod_dettComm1_eh_selValore);
mod_dettComm1.eh_resetSelezione += new EventHandler(mod_dettComm1_eh_resetSelezione);
mod_ULP1.eh_nuovoValore += new EventHandler(mod_ULP1_eh_nuovoValore);
}
void mod_ULP1_eh_nuovoValore(object sender, EventArgs e)
{
mod_dettComm1.doUpdateNoReset();
}
void mod_dettComm1_eh_resetSelezione(object sender, EventArgs e)
{
mod_ULP1.Visible = false;
}
void mod_dettComm1_eh_selValore(object sender, EventArgs e)
{
mod_ULP1.Visible = true;
mod_ULP1.setupControlli();
}
}