Files
b2bcondomini.it/PUB/PAZ/MyDashboard.aspx.cs
T
Samuele E. Locatelli a9274a1199 fix info amministratore
2018-08-11 10:54:06 +02:00

15 lines
329 B
C#

using SteamWare;
using System;
namespace PUB.PAZ
{
public partial class MyDashboard : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
bool userAuth = devicesAuthProxy.stObj.userHasRight("PAZ");
divDash.Visible = userAuth;
divAuthError.Visible = !userAuth;
}
}
}