log.asp 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. <!--#include file="Conn.asp"--><%Checklogin("信息管理")%><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  5. <title>管理区域</title>
  6. <link rel="stylesheet" href="css/common.css" type="text/css" />
  7. <link rel="stylesheet" href="css/jquery.galpop.css" type="text/css" />
  8. <script language="javascript" src="js/jquery-1.7.2.min.js"></script>
  9. <script type="text/javascript" src="js/js.js"></script>
  10. <script type="text/javascript" src="xheditor-1.1.9/xheditor-1.1.9-zh-cn.min.js"></script>
  11. <script type="text/javascript" src="js/jquery.galpop.min.js"></script>
  12. </head>
  13. <body>
  14. <div id="man_zone">
  15. <%
  16. Page = Request.QueryString("Page")
  17. Keys = Server.UrlEnCode(Request.QueryString("Keys"))
  18. Keyscode=TextEnCode(Request.QueryString("Keys"))
  19. Set Rs=Server.CreateObject("ADODB.RecordSet")
  20. Rs.Open "Select * From logRecord Where loginAct like '%"&Keyscode&"%' Order By id Desc",Conn,1,1
  21. %>
  22. <table width="100%" border="0" cellpadding="3" cellspacing="1" class="table1">
  23. <thead>
  24. <tr>
  25. <th width="10%">序号</th>
  26. <th width="20%">时间</th>
  27. <th width="70%">日志</th>
  28. </tr>
  29. </thead>
  30. <tbody>
  31. <%
  32. If Not Rs.Bof And Not Rs.Eof Then
  33. Rs.PageSize = 20
  34. If Page = "" Then Page = 1
  35. If Page = "end" Then Page = Rs.PageCount
  36. If Not IsNumeric(Page) Or Page < 1 Then Page = 1
  37. Page = Cint(Page)
  38. If Page > Rs.PageCount Then Page = Rs.PageCount
  39. Rs.AbsolutePage = Page
  40. TempNum = Rs.PageSize * (Page - 1)
  41. Set Rs1=Server.CreateObject("ADODB.RecordSet")
  42. For i=1 To Rs.PageSize
  43. If Rs.Bof Or Rs.Eof Then Exit For
  44. TempNum=TempNum+1:classid=Rs(1)
  45. %>
  46. <tr onMouseOver="this.style.background='#F7FCFF'" onMouseOut="this.style.background='#FFFFFF'">
  47. <td align="center"><%=TempNum%></td>
  48. <td align="center"><%=Rs("loginTime")%></td>
  49. <td align="center"><%=Rs("loginAct")%></td>
  50. </tr>
  51. <%
  52. Rs.MoveNext
  53. Next
  54. Else
  55. %>
  56. <tr>
  57. <td colspan="4">暂无相关记录
  58. </td>
  59. </tr>
  60. <%
  61. End If
  62. %>
  63. </tbody>
  64. <tfoot>
  65. <tr>
  66. <td colspan="4">
  67. <div class="showpagebox">
  68. <%
  69. If Rs.PageCount > 1 Then
  70. PageName="?Keys="&Keys&"&Ord="&Ord&"&"
  71. Pagelen=3
  72. If Page>1 Then
  73. Response.Write "<a href="""&PageName&"Page=1"">首页</a>"
  74. Response.Write "<a href="""&PageName&"Page="&Page-1&""">上一页</a>"
  75. End If
  76. If Pagelen*2+1 >= Rs.PageCount Then
  77. StartPage=1:EndPage=Rs.PageCount
  78. Else
  79. If Page<=Pagelen+1 Then
  80. StartPage=1
  81. EndPage=Pagelen*2+1
  82. Else
  83. StartPage=Page-Pagelen
  84. EndPage=Page+Pagelen
  85. End If
  86. If Page+Pagelen>Rs.PageCount Then StartPage=Rs.PageCount-Pagelen*2:EndPage=Rs.PageCount
  87. End If
  88. For i = StartPage To EndPage
  89. If i = Page Then
  90. Response.Write "<a class=""current"">"&i&"</a>"
  91. Else
  92. Response.Write "<a href="""&PageName&"Page="&i&""">"&i&"</a>"
  93. End If
  94. Next
  95. If Page<Rs.PageCount Then
  96. If Rs.PageCount - Page > Pagelen Then Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">..."&Rs.PageCount&"</a>"
  97. Response.Write "<a href="""&PageName&"Page="&Page+1&""">下一页</a>"
  98. Response.Write "<a href="""&PageName&"Page="&Rs.PageCount&""">尾页</a>"
  99. End If
  100. End If
  101. %> </div>
  102. <div class="searchbox">
  103. <input type="text" id="keys" class="inputTxt" value="<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>" onFocus="if(this.value == '<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>'){this.value='';}" onBlur="if(this.value == ''){this.value='<%If Keyscode="" Then Response.Write "请输入搜索关键词" Else Response.Write Keyscode%>';}" onKeyDown="if(event.keyCode==13){location.href='?Keys='+escape(document.getElementById('keys').value)+'&Page=<%=Page%>'}" /><input type="button" id="searchgo" class="searchgo" value="go" onClick="location.href='?Keys='+escape(document.getElementById('keys').value)+'&Page=<%=Page%>'" />
  104. </div>
  105. </td>
  106. </tr>
  107. </tfoor>
  108. </table>
  109. <%Rs.Close:Set Rs=Nothing:Set Rs1=Nothing:Conn.Close:Set Conn=Nothing%>
  110. </div>
  111. </body>
  112. </html>