22 lines
511 B
C#
22 lines
511 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 PUB
|
|
{
|
|
public partial class _Default : Page
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
// verifico se ho in sessione il TIPO utente, altrimenti importo condomini.it
|
|
if(memLayer.ML.StringSessionObj("UserRole")=="")
|
|
{
|
|
memLayer.ML.setSessionVal("UserRole", "condomini.it");
|
|
}
|
|
}
|
|
}
|
|
} |