platform/Bin/App_Code/.svn/text-base/PagePublic.cs.svn-base

27 lines
611 B
Plaintext
Raw Permalink 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 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();
}
}