1f7b3ff79f
git-svn-id: https://keyhammer.ath.cx/svn/GMW/trunk@483 365432ac-a1b5-4ffd-bb28-6d3099d32164
30 lines
847 B
C#
30 lines
847 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 GMW
|
|
{
|
|
public partial class MagLogico : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
mod_statoMagLogico1.eh_selValore += new EventHandler(mod_statoMagLogico1_eh_selValore);
|
|
// se non è postback resetto variabili...
|
|
if (!Page.IsPostBack)
|
|
{
|
|
memLayer.ML.emptySessionVal("CodMagLogico_sel");
|
|
}
|
|
}
|
|
|
|
void mod_statoMagLogico1_eh_selValore(object sender, EventArgs e)
|
|
{
|
|
// rimbalzo alla nuova pagina...
|
|
Response.Redirect("~/DettaglioBlocco.aspx");
|
|
}
|
|
}
|
|
}
|