Files
WebGIM/WebSites/WebGIM/dettaglioIntervento.aspx.cs
T
2009-01-29 12:49:40 +00:00

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");
}
}