25 lines
603 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
} |