fleet-contractor/Site/Credentials/Credentials.aspx.cs
2023-04-28 12:22:26 +08:00

42 lines
1.3 KiB
C#

using IronIntel.Contractor;
using IronIntel.Contractor.Site;
using IronIntel.Contractor.Site.Credentials;
using IronIntel.Contractor.Site.Security;
using IronIntel.Contractor.Users;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
public partial class Credentials_Credentials : CredentialsBasePage
{
protected string ConnectionsURL = "";
protected bool IsJDLink = false;
protected bool IsJDSub = false;
protected bool IsMyJD = false;
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;
IsJDLink = Helper.IsTrue(Request.Params["isjdlink"] ?? "");
IsJDSub = Helper.IsTrue(Request.Params["isjdsub"] ?? "");
IsMyJD = Helper.IsTrue(Request.Params["ismyjd"] ?? "");
ConnectionsURL = Request.Params["connections"];
}
}
}
}