27 lines
611 B
Plaintext
27 lines
611 B
Plaintext
using System;
|
||
using System.Web.UI;
|
||
using ZhangPu.Gov.Logical;
|
||
|
||
/// <summary>
|
||
/// PagePublic 的摘要说明
|
||
/// </summary>
|
||
public class PagePublic : Page
|
||
{
|
||
protected LEmployee lem;
|
||
protected const string DefaultPage = "~/index.aspx";
|
||
protected const string HomePage = "~/Desktop.aspx";
|
||
protected myLog.RequestLog logobj;
|
||
public PagePublic()
|
||
{
|
||
|
||
}
|
||
protected override void OnPreInit(EventArgs e)
|
||
{
|
||
lem = (LEmployee)Session["CurrentUser"];
|
||
|
||
base.OnPreInit(e);
|
||
logobj = new myLog.RequestLog();
|
||
logobj.RequestPageLog();
|
||
}
|
||
}
|