modify_mn_test_totalmark.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. Connection con=null;
  7. String sql=null;
  8. StringBuffer sb=null;
  9. ResultSet rs=null;
  10. Statement stmt=null;
  11. %>
  12. <%
  13. String mn_testID=request.getParameter("mn_testID");
  14. String mntotalmark=request.getParameter("mntotalmark");
  15. if(debug){
  16.     out.print("<br>mn_testID="+mn_testID+
  17. "<br>mntotalmark="+mntotalmark);
  18. }
  19. if(mn_testID==null || mntotalmark==null)
  20. throw new Exception("调用参数不足!");
  21. try{
  22.     con=DBCon.getConnection();
  23. con.setAutoCommit(false);
  24. sql="update mn_test set mntotalmark="+mntotalmark+
  25. " where id="+mn_testID;
  26.     stmt=con.createStatement();
  27.     stmt.executeUpdate(sql);
  28. stmt.close();
  29. if(debug)
  30. out.print("<br>update mn_test sql="+sql);
  31. //Tools.showalert("设置分数成功!",out);
  32. //Tools.goback(out);
  33. response.sendRedirect("modify_test_mn.jsp?mnID="+mn_testID);
  34.         //Tools.showJS("window.open('admin_subject.jsp','_self')",out);
  35. }
  36. catch(SQLException se){
  37. out.println(se.toString());
  38. out.print("<br>sql="+sql);
  39. }
  40. catch(Exception e){
  41. out.print("<br>"+e.toString());
  42. }
  43. finally{
  44. DBCon.dropConnection();
  45. }
  46. %>