platform/App_Code/PagePublic.cs

27 lines
612 B
C#
Raw Normal View History

2024-02-18 23:33:54 +08:00
using System;
using System.Web.UI;
using DeiNiu.wms.Logical;
/// <summary>
/// PagePublic 的摘要说明
/// </summary>
public class PagePublic : Page
{
protected LEmployee lem;
protected const string DefaultPage = "~/index.aspx";
protected const string HomePage = "~/Desktop.aspx";
protected DeiNiu.RequestLog logobj;
public PagePublic()
{
 
}
protected override void OnPreInit(EventArgs e)
{
  lem = (LEmployee)Session["CurrentUser"];
 
base.OnPreInit(e);
logobj = new DeiNiu.RequestLog();
logobj.RequestPageLog();
}
}