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

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 truename = "";
  9. String password = "";
  10. String priv_ok = "";
  11. int priv = 0;
  12. %>
  13. <html>
  14. <head>
  15. <title>帐号管理</title>
  16. <link rel="stylesheet" href="../public/style.css">
  17. </head>
  18. <Body class="ss">
  19. <center>
  20. <%
  21. priv_ok = (String)session.getAttribute("adminpriv");
  22. if(priv_ok!=null && priv_ok.equals("8")) {
  23. rs = conn.executeQuery("select * from test_admin");
  24. if(!rs.next()) {
  25.      out.println("<center>");
  26. out.println("数据库中还没有用户!<br>");
  27. out.println("单击这里<a href=javascript:history.back()>返回</a><br>");
  28.      out.println("</center>");
  29. } else {
  30. %>
  31. <table bgColor="#00acff" border="1" borderColorDark="#ffff00" borderColorLight="#000000" cellSpacing="1" width="80%">
  32. <tr>
  33. <th width="20%">用户名</th>
  34. <th width="16%">真实姓名</th>
  35. <th width="16%">密码</th>
  36. <th width="16%">面试权限</th>
  37. <th width="16%">管理权限</th>
  38. <th width="16%" colspan=2>操作</th>
  39. </tr>
  40. <%do {
  41. username = rs.getString("loginname");
  42. truename = rs.getString("truename");
  43. password = rs.getString("password");
  44. priv     = rs.getInt("PRIVILEDGE");
  45. %>
  46. <tr align="center">
  47.       <form action="accountchange.jsp" method="post">
  48. <td><%=username%></td>
  49. <input type="hidden"   name="username" value="<%=username%>">
  50.             <td><input type="text" name="truename" value="<%=truename%>"></td>
  51. <td><input type="text" name="password" value="<%=password%>"></td>
  52. <%
  53. if(priv == 1) {
  54. %>
  55. <td>
  56. <Input name="priv" type="radio" value="1" checked>
  57. </td>
  58. <td>
  59. <Input name="priv" type="radio" value="8">
  60. </td>
  61. <%
  62. }else if(priv == 8) {
  63. %>
  64. <td>
  65. <Input name="priv" type="radio" value="1">
  66. </td>
  67. <td>
  68. <Input name="priv" type="radio" value="8"  checked>
  69. </td>
  70. <%
  71. }
  72. %>
  73. <td><input type="submit" name="oper" value="修改"></td>
  74. <td><input type="submit" name="oper" value="删除"></td>
  75.         </form>
  76. </tr>
  77. <% } while(rs.next());%>
  78. <tr>
  79. <td colspan=7><hr color="white"></td>
  80. </tr>
  81. <form action="accountadd.jsp">
  82. <tr align="center">
  83. <td><input type="text" name="username"></td>
  84. <td><input type="text" name="truename"></td>
  85. <td><input type="text" name="password"></td>
  86. <td><input type="radio" name="priv" value="1" checked></td>
  87. <td><input type="radio" name="priv" value="8"></td>
  88. <td colspan="2">
  89. <Input type="submit" value="添加">
  90. </td>
  91. </tr>
  92. </form>
  93. </table>
  94. <%
  95. }
  96. } else {
  97. out.println("对不起,您的权限不足!<br>");
  98. out.println("单击这里<a href=javascript:history.back()>返回</a><br>");
  99. }
  100. %>
  101. </form>
  102. </center>
  103. </Body>
  104. </html>