| 123456789101112131415161718192021222324252627282930313233343536 |
- using SiteCore;
- using SQLData;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Web;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using Utils.Serialization;
- public partial class EHr_LoginLog : BasePage
- {
- protected override void OnPreInit(EventArgs e)
- {
- _repTitle = "登录日志";
- PmTag = "loginlog";
- //_selfCheckPermission = true;
- _keyFilterVisible = false;
- _addVisible = false;
- _filterDateBtn = false;
- _filterItem = "txtIpAddr,txtUserName,createTime";
- }
- protected void Page_Load(object sender, EventArgs e)
- {
-
- if (!IsPostBack)
- {
- }
- }
- }
|