17 lines
403 B
C#
17 lines
403 B
C#
using SteamWare;
|
|
using System;
|
|
|
|
namespace PUB
|
|
{
|
|
public partial class MainMenu : System.Web.UI.Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
// verifico se ho in sessione il TIPO utente, altrimenti imposto condomini.it
|
|
if (memLayer.ML.StringSessionObj("UserRole") == "")
|
|
{
|
|
memLayer.ML.setSessionVal("UserRole", "condomini.it");
|
|
}
|
|
}
|
|
}
|
|
} |