admintc2.jsp
上传用户:mkymky1985
上传日期:2014-06-23
资源大小:754k
文件大小:3k
源码类别:

其他数据库

开发平台:

Java

  1. <%@ page language = "java" contentType = "text/html;charset=gb2312"%>
  2. <%@ page import = "java.sql.*,wsxk.*" %>
  3. <jsp:useBean id="subject" scope="page" class="wsxk.ConDB"/>
  4. <%! String trans(String chi)
  5. {
  6.                String result = null;
  7.                byte temp [];
  8.                try
  9.                 {
  10.                       temp=chi.getBytes("iso-8859-1");
  11.                       result = new String(temp, "gb2312");
  12.                 }
  13.                 catch(Exception e)
  14.                 {
  15.                         System.out.println (e.toString());
  16.                 }
  17.                 return result;
  18. }
  19. %>
  20. <%
  21. String strSQL1 = "select tcid from tc order by tcid asc";
  22. ResultSet rs2 = subject.executeQuery(strSQL1);
  23. String MaxID = new String();
  24. int id = 0;
  25. while(rs2.next())
  26. {
  27. id = rs2.getInt("tcid");
  28. }
  29. /*int k = 0;
  30. for (k = 0; k < 999999; k++)
  31. {
  32.     if (id.equals(MaxID.valueOf(k)))
  33. break;
  34. }
  35. ++k;
  36. if (k >= 999999)
  37. k = 1;
  38. id = MaxID.valueOf(k);*/
  39. id++;
  40. System.out.println("id" + id);
  41. rs2.close();
  42. %>
  43. <%
  44. //String couid = new String (request.getParameter("couid"));
  45. String couname = new String (request.getParameter("select"));
  46. String teaname = new String (request.getParameter("select2"));
  47. //String coumark = new String (request.getParameter("coumark"));
  48. //String couback = new String (request.getParameter("couback"));
  49. //String stupsw = new String (request.getParameter("stupsw"));
  50. System.out.println (couname);
  51. couname=couname.trim();
  52. System.out.println (couname);
  53. couname=trans(couname);
  54. System.out.println (couname);
  55. teaname= teaname.trim();
  56. teaname= trans(teaname);
  57. String teaid = new String();
  58. String couid = new String();
  59. String sql = "select couid,couname from course where couname = '"+couname+"'";
  60. ResultSet rs = subject.executeQuery(sql);
  61. while(rs.next())
  62. {
  63. couid = rs.getString("couid");
  64. }
  65. rs.close();
  66. String sql2= "select teaid,teaname from teacher where teaname = '"+teaname+"'";
  67. ResultSet rs1 = subject.executeQuery(sql2);
  68. while(rs1.next())
  69. {
  70. teaid = rs1.getString("teaid");
  71. }
  72. rs1.close();
  73. System.out.println(couid);
  74. System.out.println(teaid);
  75. //String str = null;
  76. //String str2 = "";
  77. %>
  78. <% /*if (couid.trim().equals("")||couname.trim().equals("")||coumark.trim().equals(""))
  79. {response.sendRedirect("admincourseerr.htm");}*/
  80. String sql3 = "insert into tc(tcid, teaid, couid) values(" + id + ",'" + teaid + "','" + couid + "')";
  81. subject.executeUpdate(sql3);
  82. %>
  83. <html>
  84. <head>
  85. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  86. <meta HTTP-EQUIV=REFRESH CONTENT="10; URL=admintc.jsp">
  87. <link href="_notes/aaa.css" rel="stylesheet" type="text/css">
  88. <style type="text/css">
  89. <!--
  90. @import url("_notes/ccc");
  91. body,td,th {
  92. font-size: 12px;
  93. color: #FFFFFF;
  94. font-weight: bold;
  95. }
  96. .style1 {color: #000000}
  97. -->
  98. </style>
  99. </HEAD>
  100. <BODY BGCOLOR=#0D85A6 BACKGROUND="images/bg.gif" >
  101. <div align="center">
  102.   <p align="left">    <br>
  103.   课程分配成功,本页将于10秒内自动<a href="admintc.jsp" class="style1">返回前页</a></p>
  104.   <p><br>
  105.     <img src="images/qa.jpg" width="640" height="427"></p>
  106. </div>
  107. </BODY>
  108. </HTML>