admin_knowdel.jsp
上传用户:nbluoke
上传日期:2013-08-09
资源大小:4851k
文件大小:1k
源码类别:

教育系统应用

开发平台:

WORD

  1. <%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
  2. <%@ page import="jinghua.*"%>
  3. <jsp:useBean id="DBCon" class="jinghua.JinghuaConn" scope="session">
  4. </jsp:useBean>
  5. <%!boolean debug=false;
  6. %>
  7. <%
  8. String [] ids=request.getParameterValues("id");
  9. if(ids==null){
  10.      Tools.showalert("请您选择欲删除的知识点!",out);
  11.     Tools.goback(out);
  12. }else
  13. {
  14. String sql;
  15. StringBuffer sb=new StringBuffer();
  16. for(int i=0;i<ids.length;i++){
  17.     sb.append(ids[i]+",");
  18. }
  19. sql=sb.toString().substring(0,sb.length()-1);
  20. sql="delete from knowpoint where id in ("+sql+")";
  21. if(debug){
  22.     out.print("<br>sql="+sql);
  23. }
  24.     try{
  25.         Connection con=DBCon.getConnection();
  26.         PreparedStatement pstmt=con.prepareStatement(sql);
  27.         pstmt.executeUpdate();
  28.         pstmt.close();
  29.         if(debug){
  30.             out.print("<BR>insert="+sql);
  31.         }
  32.         Tools.showalert("成功删除知识点信息!",out);
  33.         response.sendRedirect("admin_knowpoint.jsp");
  34.         //Tools.showJS("window.open('admin_subject.jsp','_self')",out);
  35.     }
  36.     catch(SQLException se){
  37.         out.println(se.toString());
  38.     }
  39.     catch(Exception e){
  40.         out.print(e.toString());
  41.     }
  42.     finally{
  43.         DBCon.dropConnection();
  44.     }
  45. }
  46. %>