Admin_Log.jsp
上传用户:sdtxjx
上传日期:2022-07-09
资源大小:2937k
文件大小:2k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. <%@ page contentType="text/html; charset=GBK" language="java" buffer="32kb"%>
  2. <%@ page import="dreamtime.dreamnews.*"%>
  3. <%@ include file="Session.jsp"%>
  4. <% if (Function1.StrToInt((String)session.getAttribute("AdminType"))!=3) 
  5. {
  6.    response.sendError(403,"禁止访问 您没有这个权限");
  7.    return;
  8. }
  9. %>
  10. <html>
  11. <head>
  12. <meta http-equiv="Content-Type" content="text/html; charset=GBK">
  13. <link href="css/bodystyle.css" rel="stylesheet" type="text/css">
  14. <script src="js/post.js"></script>
  15. <title>管理新闻列表</title></head>
  16. <body>
  17. <%
  18. request.setCharacterEncoding("GBK");   //设置编码方式为GBK
  19. Log log = new Log();
  20. Function Fun = new Function();
  21. String Action = request.getParameter("Action");
  22. String IP = request.getRemoteAddr(); //得到客户端Ip地址
  23. String AdminName = (String)session.getAttribute("AdminName"); 
  24. String strPage = request.getParameter("intPage");
  25. String sPage = request.getContextPath() + request.getServletPath() + "?";
  26. String sOK = log.ReadLog(sPage,strPage);
  27. if (Action == null || Action.equals("")) Action = "List";
  28. if (Action.equals("Del"))
  29. {
  30. //给出提示信息
  31. String sWarn = "是否确定要删除这条日志?";
  32. if (request.getParameter("OK") != null && request.getParameter("OK").equals("Yes"))
  33. {
  34. String LogID = request.getParameter("LogID");
  35. if (log.DelLog(LogID,AdminName,IP,false))
  36. out.print("<script>alert('删除日志成功!');location.href='Admin_Log.jsp';</script>");
  37. else 
  38. {
  39. out.print(Fun.OutError("删除日志操作出错!"));
  40. return;
  41. }
  42. }
  43. else out.print(Fun.OutWarn(sWarn));
  44. }
  45. else if (Action.equals("DelAll"))
  46. {
  47. //给出提示信息
  48. String sWarn = "是否确定要删除所有日志?该操作将不可恢复,请你谨慎操作!";
  49. if (request.getParameter("OK") != null && request.getParameter("OK").equals("Yes"))
  50. {
  51. if (log.DelLog(null,AdminName,IP,true))
  52. out.print("<script>alert('删除所有日志成功!');location.href='Admin_Log.jsp';</script>");
  53. else 
  54. {
  55. out.print(Fun.OutError("删除所有日志操作出错!"));
  56. return;
  57. }
  58. }
  59. else out.print(Fun.OutWarn(sWarn));
  60. }
  61. else if (sOK.equals("No"))
  62. {
  63. out.println(Fun.OutError("读取日志列表操作出错!"));
  64. }
  65. else
  66. {
  67. out.println(sOK);
  68. }
  69. %>
  70. <br><br>
  71. </body>
  72. </html>