classmanager.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 classid   = "";
  8. String classname = "";
  9. String priv_ok = "";
  10. int totaltime    = 0;
  11. int totalques    = 0;
  12. int totalpaper   = 0;
  13. %>
  14. <html>
  15. <head>
  16. <title>课程信息管理</title>
  17. <link rel="stylesheet" href="../public/style.css">
  18. </head>
  19. <Body class="ss">
  20. <center>
  21. <%
  22. priv_ok = (String)session.getAttribute("adminpriv");
  23. if(priv_ok!=null && priv_ok.equals("8")) {
  24. rs = conn.executeQuery("select * from test_classinfo");
  25. if(!rs.next()) {
  26.      out.println("<center>");
  27. out.println("数据库中还没有课程信息!<br>");
  28. out.println("单击这里<a href=javascript:history.back()>返回</a><br>");
  29.      out.println("</center>");
  30. } else {
  31. %>
  32. <table bgColor="#00acff" border="1" borderColorDark="#ffff00" borderColorLight="#000000" cellSpacing="1" width="80%">
  33. <tr>
  34. <th width="20%">课程代号</th>
  35. <th width="16%">课程名称</th>
  36. <th width="16%">考试时间</th>
  37. <th width="16%">考题数目</th>
  38. <th width="16%">试卷数目</th>
  39. <th width="16%" colspan=2>操作</th>
  40. </tr>
  41. <%do {
  42. classid   = rs.getString("classid");
  43. classname = rs.getString("classname");
  44. totaltime = rs.getInt("totaltime");
  45.             totalques = rs.getInt("totalques");
  46.             totalpaper= rs.getInt("totalpaper"); 
  47. %>
  48. <tr align="center">
  49.       <form action="classchange.jsp" method="post">
  50. <td><%=classid%></td>
  51. <input type="hidden"   name="classid"    value="<%=classid%>">
  52.             <td><input type="text" name="classname"  value="<%=classname%>"></td>
  53.             <td><input type="text" name="totaltime"  value="<%=totaltime%>"></td>
  54.             <td><input type="text" name="totalques"  value="<%=totalques%>"></td>
  55.             <td><%=totalpaper%></td>
  56.             <input type="hidden" name="totalpaper" value="<%=totalpaper%>">
  57. <td><input type="submit" name="oper" value="修改"></td>
  58. <td><input type="submit" name="oper" value="删除"></td>
  59.         </form>
  60. </tr>
  61. <% } while(rs.next());%>
  62. <tr>
  63. <td colspan=7><hr color="white"></td>
  64. </tr>
  65. <form action="classadd.jsp">
  66. <tr align="center">
  67.             <td><input type="text" name="classid"    value=""></td>
  68.             <td><input type="text" name="classname"  value=""></td>
  69.             <td><input type="text" name="totaltime"  value=""></td>
  70.             <td><input type="text" name="totalques"  value=""></td>
  71.             <td>&nbsp;</td>
  72. <td colspan="2">
  73. <Input type="submit" value="添加">
  74. </td>
  75. </tr>
  76. </form>
  77. </table>
  78. <%
  79. }
  80. } else {
  81. out.println("对不起,您的权限不足!<br>");
  82. out.println("单击这里<a href=javascript:history.back()>返回</a><br>");
  83. }
  84. %>
  85. </form>
  86. </center>
  87. </Body>
  88. </html>