using IronIntel.Contractor.Site; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; public partial class ChangePassword : ChangePasswordBasePage { protected void Page_Load(object sender, EventArgs e) { string tp = Request.QueryString["tp"]; if (string.Compare(tp, "ashx", true) == 0) { ProcessRequest(); } else if (!IsPostBack) { Title = PageTitle; if (CheckLoginSession()) { // nothing var s = GetCurrentLoginSession(); UserID = s.User.ID; } } } }