16 lines
536 B
C#
16 lines
536 B
C#
using SteamWare;
|
|
using System;
|
|
|
|
namespace GPW.AdminArea
|
|
{
|
|
public partial class Default : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
memLayer.ML.setSessionVal("preUrlString", "", true);
|
|
memLayer.ML.setSessionVal("nextPage", "menu.aspx");
|
|
logger.lg.scriviLog(string.Format("Errore utente non inizializzato: rimando a login.aspx, dalla pagina {0}", "menu.aspx"), tipoLog.STARTUP);
|
|
Response.Redirect("login.aspx");
|
|
}
|
|
}
|
|
} |