29 lines
844 B
C#
29 lines
844 B
C#
using SteamWare;
|
|
using System;
|
|
using System.Web.UI;
|
|
|
|
public partial class dettaglioIntervento : UserPage
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!Page.IsPostBack)
|
|
{
|
|
// se ho valore in URL lo salvo in sessione...
|
|
if (memLayer.ML.QSS("numIntMtz") != "")
|
|
{
|
|
memLayer.ML.setSessionVal("numIntMtz_sel", memLayer.ML.QSI("numIntMtz"));
|
|
}
|
|
}
|
|
mod_dettaglioIntervento1.eh_chiudi += new EventHandler(mod_dettaglioIntervento1_eh_chiudi);
|
|
}
|
|
/// <summary>
|
|
/// resetto selezione, nascondo dettaglio
|
|
/// </summary>
|
|
/// <param name="sender"></param>
|
|
/// <param name="e"></param>
|
|
void mod_dettaglioIntervento1_eh_chiudi(object sender, EventArgs e)
|
|
{
|
|
Response.Redirect("elencoRichieste");
|
|
}
|
|
}
|