Files
b2bcondomini.it/PUB/PAM/MyHome.aspx.cs
T
2018-08-14 15:24:42 +02:00

15 lines
327 B
C#

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