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

教育系统应用

开发平台:

WORD

  1. <%@ page contentType="text/html; charset=gb2312" language="java" %>
  2. <%@ page import="java.sql.*"  %>
  3. <%@ page import="jinghua.*"%>
  4. <jsp:useBean id="DBCon" class="jinghua.JinghuaConn" scope="session">
  5. </jsp:useBean>
  6. <%!String strQuest1,strTip,strQuest2=null;%>
  7. <%!Connection Conn;%>
  8. <%
  9. String DBID="";
  10. int dbid=-1;
  11. if(!(session.isNew())){
  12. DBID=request.getParameter("dbid");
  13. if(DBID==null){
  14. DBID="";
  15. }
  16. DBID=jinghua.Tools.codestring(DBID);
  17. }
  18. if(!(DBID.equals("")))
  19. {
  20. dbid=Integer.parseInt(DBID);
  21. Connection Conn=DBCon.getConnection();
  22. Statement stmt = Conn.createStatement();
  23. ResultSet rs;
  24. String strHtml=null;
  25. String sql;
  26. try{
  27. strQuest1=null;
  28.    sql="select ID,QuestText,Tip from question where id="+dbid;
  29.    rs=stmt.executeQuery(sql);
  30.    if(rs.next()){
  31.      strQuest1=rs.getString("QuestText");
  32. strTip=rs.getString("Tip");
  33.    }
  34.    }catch (SQLException e) {
  35.    System.out.println(e);
  36.    e.printStackTrace();
  37. }
  38. }
  39. %>
  40. <html>
  41. <head>
  42. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  43. <title>无标题文档</title>
  44. </head>
  45. <body>
  46. <table width="84%" border="1" align="center">
  47.   <tr>
  48.     <td colspan="3" align="center">Question数据库查询</td>
  49.   </tr>
  50.   <tr align="left">
  51.     <td width="24%" rowspan="2"><form name="form1" method="post" action="ShowQuest.jsp">
  52.         <table width="64%" height="78" border="0">
  53.           <tr>
  54.             <td><input name="dbid" type="text" id="dbid" size="10"></td>
  55.           </tr>
  56.           <tr>
  57.             <td><input type="submit" name="Submit" value="提交"></td>
  58.           </tr>
  59.         </table>
  60.         <font size="-1"><font size="-3"></font></font> </form></td>
  61.     <td height="208" colspan="2"> <%if(strQuest1==null) out.print("<BR>"); else out.print(strQuest1);%> &nbsp;</td>
  62.     <td width="3%" rowspan="2"></td>
  63.   </tr>
  64.   <tr align="left">
  65.     <% if(strQuest1!=null)
  66.      strQuest1=jinghua.Tools.toHtml(strQuest1);%>
  67.     <td width="26%" height="200"><%if (strQuest1==null) out.print("<BR>"); else out.print(strQuest1);%> &nbsp;</td>
  68.     <td width="47%" height="200"><%if (strTip==null) out.print("<BR>"); else out.print(strTip);%>&nbsp;</td>
  69.   </tr>
  70. </table>
  71. </body>
  72. </html>