using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using IronIntel.Contractor.Site.SystemSettings; public partial class UserOptions : SystemSettingsBasePage { public string IID = ""; protected void Page_Load(object sender, EventArgs e) { if (!CheckLoginSession()) { RedirectToLoginPage(); } else { string methodName = Request.Form["MethodName"]; if (!string.IsNullOrEmpty(methodName)) { ProcessRequest(methodName); } else if (!IsPostBack) { this.Title = PageTitle; IID = GetCurrentUser().IID; } } } public bool IsSupperAdmin { get { var user = GetCurrentUser(); if (user.UserType == IronIntel.Contractor.Users.UserTypes.SupperAdmin) return true; else return false; } } }