d3f8946737
git-svn-id: https://keyhammer.ath.cx/svn/WebGIM/trunk@51 3e04ef4b-3b25-4b6c-be27-bb5389ca777b
23 lines
672 B
C#
23 lines
672 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
public partial class dettaglioIntervento : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
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.aspx");
|
|
}
|
|
}
|