Files
b2bcondomini.it/PUB/Default.aspx.cs
T
2018-05-16 11:48:04 +02:00

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");
}
}
}
}