27 lines
612 B
C#
27 lines
612 B
C#
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();
|
||
}
|
||
}
|