33 lines
833 B
C#
33 lines
833 B
C#
using Foresight.Fleet.Services.User;
|
|
using Foresight.Security.License;
|
|
using IronIntel.Contractor;
|
|
using IronIntel.Contractor.Site.Maintenance;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
public partial class Maintenance_Maintenance : MaintenanceBasePage
|
|
{
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
} |