Files
b2bcondomini.it/PUB/PAM/MyDashboard.aspx.cs
2018-08-10 19:37:14 +02:00

15 lines
329 B
C#

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