privmanager.jsp
上传用户:hjt198082
上传日期:2015-04-16
资源大小:95k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Java

  1. <%@page contentType="text/html;charset=GBK"%>
  2. <%@page import="java.sql.*"%>
  3. <%@ include file="/public/checkvalidadmin.jsp"%>
  4. <jsp:useBean id="conn" scope="page" class="test.ConnOracle"/>
  5. <%!
  6. ResultSet rs = null;
  7. String username = "";
  8. String password = "";
  9. String priv_ok = "";
  10. int priv = 0;
  11. %>
  12. <html>
  13. <head>
  14. <title>权限管理</title>
  15. <link rel="stylesheet" href="../public/style.css">
  16. </head>
  17. <Body class="ss">
  18. <center>
  19. <%
  20. priv_ok = (String)session.getAttribute("adminpriv");
  21. if(priv_ok!=null && priv_ok.equals("8")) {
  22. rs = conn.executeQuery("select * from test_admin");
  23. if(!rs.next()) {
  24. out.println("数据库中还没有用户!<br>");
  25. out.println("单击这里<a href=javascript:history.back()>返回</a><br>");
  26. } else {
  27. %>
  28. <form action="privchange.jsp" method="post">
  29. <table bgColor="#acacff" border="1" borderColorDark="#ffffff" borderColorLight="#000000" cellSpacing="1" width="80%">
  30. <tr>
  31. <th width="25%">用户名</th>
  32. <th width="25%">密码</th>
  33. <th width="25%">面试权限</th>
  34. <th width="25%">管理权限</th>
  35. </tr>
  36. <%do {
  37. username = rs.getString("username");
  38. password = rs.getString("password");
  39. priv     = rs.getInt("PRIVILEDGE");
  40. %>
  41. <tr align="center">
  42. <td><%=username%></td>
  43. <td><%=password%></td>
  44. <%
  45. if(priv == 1 || priv == 8) {
  46. %>
  47. <td>
  48. <Input name="check1<%=username%>" type="checkbox" value="ok" checked>
  49. </td>
  50. <%
  51. }else {
  52. %>
  53. <td>
  54. <Input name="check1<%=username%>"" type="checkbox" value="ok" >
  55. </td>
  56. <%
  57. }
  58. if(priv == 8) {
  59. %>
  60. <td>
  61. <Input name="check2<%=password%>" type="checkbox" value="ok"  checked>
  62. </td>
  63. <%
  64. }else {
  65. %>
  66. <td>
  67. <Input name="check2<%=password%>" type="checkbox" value="ok" >
  68. </td>
  69. <%
  70. }
  71. %>
  72. </tr>
  73. <% } while(rs.next());%>
  74. <tr align="center">
  75. <td colspan="4">
  76. <Input type="submit" value="保存修改">&nbsp;&nbsp;&nbsp;&nbsp;
  77. <Input type="reset"  value="恢复">
  78. </td>
  79. </tr>
  80. </table>
  81. <%
  82. }
  83. } else {
  84. out.println("对不起,您的权限不足!<br>");
  85. out.println("<a href=javascript:history.back()>单击这里返回</a><br>");
  86. }
  87. %>
  88. </form>
  89. </center>
  90. </Body>
  91. </html>