20 lines
595 B
C#
20 lines
595 B
C#
using SteamWare;
|
|
using System;
|
|
|
|
namespace GPW_Admin
|
|
{
|
|
public partial class Default : BasePage
|
|
{
|
|
#region Protected Methods
|
|
|
|
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");
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |