platform/Bin/App_Code/PagePublic.cs

27 lines
612 B
C#
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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();
}
}