fleet-contractor/Site/Maintenance/WorkOrderPlansManagement.aspx.cs
2024-03-26 15:56:31 +08:00

25 lines
603 B
C#

using IronIntel.Contractor.Site.Maintenance;
using System;
public partial class WorkOrderPlansManagement : WorkOrderBasePage
{
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)
{
Title = PageTitle;
}
}
}
}