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

其他数据库

开发平台:

Java

  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  4. <title>无标题文档</title>
  5. <style type="text/css">
  6. <!--
  7. @import url("_notes/bbb.css");
  8. a:link {
  9. color: #000000;
  10. }
  11. a:visited {
  12. color: #000000;
  13. }
  14. -->
  15. </style>
  16. </head>
  17. <body >
  18. <%@ page contentType="text/html; charset=gb2312"%>
  19. <%@ page language="java" import="java.sql.*"%>
  20. <jsp:useBean id="subject" scope="page" class="wsxk.ConDB"/>
  21. <%
  22. String select = new String (request.getParameter("select"));
  23. String wnum=new String(request.getParameter("wnum").trim().getBytes("8859_1"));
  24. String word=new String(request.getParameter("word").trim().getBytes("8859_1"));
  25. String state = new String();
  26. int typeid =Integer.parseInt(select);
  27. System.out.println(wnum);
  28. String sql = new String();
  29. switch(typeid)
  30. {
  31. case 0: {sql="select * from student where stuid='"+wnum+"' and stupsw='"+word+"'";
  32. break;}
  33. case 1: {sql="select * from teacher where teaid='"+wnum+"' and teapsw='"+word+"'";
  34. break;}
  35. case 2: {sql="select * from admin where adminname='"+wnum+"' and adminpsw='"+word+"'";
  36. break;}
  37. }
  38. //String sql="select tpri from administrators where wnum='"+wnum+"' and wpswd='"+word+"'";
  39. ResultSet rs=subject.executeQuery(sql);
  40. if(rs.next()){
  41. System.out.println(rs.getString(1));
  42. System.out.println(rs.getString(2));
  43. String tpri=rs.getString("tpri");
  44. session.setAttribute("wnum",wnum);
  45. session.setAttribute("select",select);
  46. switch(typeid)
  47. {
  48. case 0: {response.sendRedirect("index1.jsp");
  49. break;}
  50. case 1: {response.sendRedirect("index2.jsp");
  51. break;}
  52. case 2: {response.sendRedirect("index3.jsp");
  53. break;}
  54. }
  55. rs.close();
  56. }
  57. else
  58. {
  59. rs.close();
  60. %>
  61. <table width="375" border="0" align="center">
  62.   <tr>
  63.     <td height="168"><img src="images/404.gif" width="484" height="361"></td>
  64.   </tr>
  65. </table>
  66. <table width="257" height="68" border="0" align="center">
  67.   <tr>
  68.     <td><div align="center">
  69.       <a href="index1.htm"><strong>返回首页 </strong></a> </div></td>
  70.   </tr>
  71. </table>
  72. <%}%>
  73. </body>
  74. </html>