37 lines
790 B
C#
37 lines
790 B
C#
using FI.FIC;
|
|
using Foresight.Fleet.Services.Styles;
|
|
using IronIntel.Contractor;
|
|
using IronIntel.Contractor.iisitebase;
|
|
using IronIntel.Contractor.Site;
|
|
using IronIntel.Contractor.Users;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
public partial class Maintenance_MaintenanceBase : CommonBase
|
|
{
|
|
protected override bool ExportModule
|
|
{
|
|
get { return true; }
|
|
}
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if (!IsPostBack)
|
|
{
|
|
try
|
|
{
|
|
GetUIStyle();
|
|
}
|
|
catch
|
|
{
|
|
// TODO: errors when get the ui style.
|
|
}
|
|
}
|
|
}
|
|
}
|