LoginLog.aspx.cs 733 B

123456789101112131415161718192021222324252627282930313233343536
  1. using SiteCore;
  2. using SQLData;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Data;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Web;
  9. using System.Web.UI;
  10. using System.Web.UI.WebControls;
  11. using Utils.Serialization;
  12. public partial class EHr_LoginLog : BasePage
  13. {
  14. protected override void OnPreInit(EventArgs e)
  15. {
  16. _repTitle = "登录日志";
  17. PmTag = "loginlog";
  18. //_selfCheckPermission = true;
  19. _keyFilterVisible = false;
  20. _addVisible = false;
  21. _filterDateBtn = false;
  22. _filterItem = "txtIpAddr,txtUserName,createTime";
  23. }
  24. protected void Page_Load(object sender, EventArgs e)
  25. {
  26. if (!IsPostBack)
  27. {
  28. }
  29. }
  30. }