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

MySQL数据库

开发平台:

Java

  1. <%@page contentType="text/html;charset=GBK"%>
  2. <%@page import="java.sql.*" errorPage="/public/error.jsp"%>
  3. <%@ include file="/public/checkvalidadmin.jsp"%>
  4. <%@ include file="/public/checkvalidadmin8.jsp"%>
  5. <jsp:useBean id="conn" scope="page" class="test.ConnOracle"/>
  6. <%!
  7. String questionid;
  8. ResultSet rs = null;
  9. String sql = "";
  10. int result = 0;
  11. String currpage = "1";
  12. %>
  13. <%
  14. questionid = request.getParameter("id");
  15. currpage   = request.getParameter("Page");
  16. // 避免用户直接在浏览器地址栏输入页面地址所产生的Exception
  17. if(questionid==null || questionid.equals("")) {
  18.     out.println("<center>");
  19. out.println("请进行合法操作!");
  20. out.println("</center>");
  21. return;
  22. }
  23. try{
  24. sql  = "select * from test_question_lib where ";
  25. sql += " questionid=" + questionid;
  26. rs = conn.executeQuery( sql );
  27. if(!rs.next()) {
  28. out.println("<center>");
  29. out.println("数据库没有代号为" + questionid + "的试题信息!<br>");
  30. out.println("单击这里<a href=javascript:history.back()>返回</a><br>");
  31. out.println("</center>");
  32. } else {
  33. sql = "delete from test_question_lib ";
  34. sql+= " where questionid=" + questionid;
  35. result = conn.executeUpdate( sql );
  36. if(result !=1 ) {
  37. out.println("<center>");
  38. out.println("试题信息删除失败!<br><br>");
  39. out.println("请将下列信息告知管理员<br><br>");
  40. out.println("单击这里<a href=javascript:history.back()>返回</a><br>");
  41. out.println("</center>");
  42. }
  43. }
  44. }catch(Exception ee) {
  45. out.println("<center>");
  46. out.println("试题信息删除失败!<br><br>");
  47. out.println("请将下列信息告知管理员<br><br>");
  48. out.println(ee.toString() + "<br><br>");
  49. out.println("单击这里<a href=javascript:history.back()>返回</a><br>");
  50. out.println("</center>");
  51. }
  52. %>
  53. <jsp:forward page="questionmanager.jsp">
  54.    <jsp:param name="Page" value="<%=currpage%>"/>
  55. </jsp:forward>
  56. </center>
  57. </Body>
  58. </html>