adminmessage_0002ejsp_jsp.java
上传用户:top0756
上传日期:2022-08-11
资源大小:6501k
文件大小:8k
源码类别:

Jsp/Servlet

开发平台:

VBScript

  1. import java.sql.*;
  2. import proj112.ISOtoGb2312;
  3. import javax.servlet.*;
  4. import javax.servlet.http.*;
  5. import javax.servlet.jsp.*;
  6. import org.apache.jasper.runtime.*;
  7. public class adminmessage_0002ejsp_jsp extends HttpJspBase {
  8.     static {
  9.     }
  10.     public adminmessage_0002ejsp_jsp( ) {
  11.     }
  12.     private static boolean _jspx_inited = false;
  13.     public final void _jspx_init() throws org.apache.jasper.runtime.JspException {
  14.     }
  15.     public void _jspService(HttpServletRequest request, HttpServletResponse  response)
  16.         throws java.io.IOException, ServletException {
  17.         JspFactory _jspxFactory = null;
  18.         PageContext pageContext = null;
  19.         HttpSession session = null;
  20.         ServletContext application = null;
  21.         ServletConfig config = null;
  22.         JspWriter out = null;
  23.         Object page = this;
  24.         String  _value = null;
  25.         try {
  26.             if (_jspx_inited == false) {
  27.                 synchronized (this) {
  28.                     if (_jspx_inited == false) {
  29.                         _jspx_init();
  30.                         _jspx_inited = true;
  31.                     }
  32.                 }
  33.             }
  34.             _jspxFactory = JspFactory.getDefaultFactory();
  35.             response.setContentType("text/html; charset=GBK");
  36.             pageContext = _jspxFactory.getPageContext(this, request, response,
  37.              "", true, 8192, true);
  38.             application = pageContext.getServletContext();
  39.             config = pageContext.getServletConfig();
  40.             session = pageContext.getSession();
  41.             out = pageContext.getOut();
  42.             // HTML // begin [file="/adminmessage.jsp";from=(0,48);to=(1,0)]
  43.                 out.write("rn");
  44.             // end
  45.             // HTML // begin [file="/adminmessage.jsp";from=(1,31);to=(2,0)]
  46.                 out.write("rn");
  47.             // end
  48.             // HTML // begin [file="/adminmessage.jsp";from=(2,27);to=(3,0)]
  49.                 out.write("rn");
  50.             // end
  51.             // HTML // begin [file="/adminmessage.jsp";from=(3,41);to=(33,0)]
  52.                 out.write("rn<HTML>rn<HEAD>rn<TITLE>update_form</TITLE>rn</HEAD>rn<body  text="#808080" link="#FF99CC" vlink="#FF8080" alink="#FF99CC" topmargin="0" leftmargin="0"><style>rn<!--rnBODY {SCROLLBAR-FACE-COLOR: #FFFFFF; SCROLLBAR-HIGHLIGHT-COLOR: #FFFFFF; SCROLLBAR-SHADOW-COLOR: #FFFFFF; SCROLLBAR-3DLIGHT-COLOR: #FFFFFF; SCROLLBAR-ARROW-COLOR:  #FFAAAA; SCROLLBAR-TRACK-COLOR: #FFFFFF; SCROLLBAR-DARKSHADOW-COLOR: #FFFFFF; }rn-->rn</style>rnrnrn<table width="90%" align="center">rn   <tr>rn    <td height="10"></td>rn  </tr>rn  <tr>rn    <td align="center"><font color="green" size="5">你的资料如下:</font></td>rn  </tr>rn   <tr>rn    <td height="10"></td>rn  </tr>rn  <tr>rn    <td align="center"></td>rn  </tr>rn   <tr>rn    <td height="10"></td>rn  </tr>rn</table>rn<CENTER>rn");
  53.             // end
  54.             // begin [file="/adminmessage.jsp";from=(33,2);to=(39,0)]
  55.                 
  56.                 Class.forName("sun.jdbc.odbc.JdbcOdbcDriver"); //载入驱动程序类别
  57.                 Connection con = DriverManager.getConnection("jdbc:odbc:dsn112"); //建立数据库链接
  58.                 Statement stmt = con.createStatement(); //建立Statement对象
  59.                 ResultSet rs; //建立ResultSet(结果集)对象
  60.                 rs = stmt.executeQuery("SELECT * FROM admin"); //执行SQL语句
  61.             // end
  62.             // HTML // begin [file="/adminmessage.jsp";from=(39,2);to=(41,1)]
  63.                 out.write("rn<TABLE  height="350" width="80%" border="1" bordercolor="#CC9966">rnt");
  64.             // end
  65.             // begin [file="/adminmessage.jsp";from=(41,3);to=(45,2)]
  66.                 
  67.                  //利用while循环将数据表中的记录列出
  68.                  while (rs.next())
  69.                  {
  70.                 
  71.             // end
  72.             // HTML // begin [file="/adminmessage.jsp";from=(45,4);to=(50,98)]
  73.                 out.write("rnrn           <tr><td height="10"></td></tr>rnrnt  <tr>rnt         <td>&nbsp;&nbsp;&nbsp;&nbsp;姓名:</td><td><input type="text" name="name" size="20" value="");
  74.             // end
  75.             // begin [file="/adminmessage.jsp";from=(50,101);to=(50,116)]
  76.                 out.print(rs.getString(1));
  77.             // end
  78.             // HTML // begin [file="/adminmessage.jsp";from=(50,118);to=(53,98)]
  79.                 out.write(""></td>rnt   </tr>rnt   <tr>rnt         <td>&nbsp;&nbsp;&nbsp;&nbsp;性别:</td><td><input type="text" name="sex"  size="10" value="");
  80.             // end
  81.             // begin [file="/adminmessage.jsp";from=(53,101);to=(53,117)]
  82.                 out.print(rs.getString(2) );
  83.             // end
  84.             // HTML // begin [file="/adminmessage.jsp";from=(53,119);to=(56,99)]
  85.                 out.write(""></td>rnt   </tr>rnt   <tr>rnt         <td>&nbsp;&nbsp;&nbsp;&nbsp;出生年月:</td><td><input type="text" name="age" size="10" value="");
  86.             // end
  87.             // begin [file="/adminmessage.jsp";from=(56,102);to=(56,117)]
  88.                 out.print(rs.getString(3));
  89.             // end
  90.             // HTML // begin [file="/adminmessage.jsp";from=(56,119);to=(60,87)]
  91.                 out.write(""></td>rnt   </tr>rnrnt   <tr>rnt         <td>&nbsp;&nbsp;&nbsp;&nbsp;电  话:</td><td><input name="tel" size="40" value="");
  92.             // end
  93.             // begin [file="/adminmessage.jsp";from=(60,90);to=(60,106)]
  94.                 out.print(rs.getString(4) );
  95.             // end
  96.             // HTML // begin [file="/adminmessage.jsp";from=(60,108);to=(63,102)]
  97.                 out.write(""></td>rnt   </tr>rn           <tr>rnt         <td>&nbsp;&nbsp;&nbsp;&nbsp;Email:</td><td><input type="text" name="email" size="40" value="");
  98.             // end
  99.             // begin [file="/adminmessage.jsp";from=(63,105);to=(63,121)]
  100.                 out.print(rs.getString(5) );
  101.             // end
  102.             // HTML // begin [file="/adminmessage.jsp";from=(63,123);to=(66,101)]
  103.                 out.write(""></td>rnt   </tr>rnt   <tr>rnt         <td>&nbsp;&nbsp;&nbsp;&nbsp;住址:</td><td><input type="text" name="address" size="40" value="");
  104.             // end
  105.             // begin [file="/adminmessage.jsp";from=(66,104);to=(66,120)]
  106.                 out.print(rs.getString(6) );
  107.             // end
  108.             // HTML // begin [file="/adminmessage.jsp";from=(66,122);to=(73,2)]
  109.                 out.write(""></td>rnt   </tr>rnrn           <tr><td height="10"></td></tr>rnrn           <tr><td height="10"></td></tr>rnrntt");
  110.             // end
  111.             // begin [file="/adminmessage.jsp";from=(73,4);to=(78,1)]
  112.                 
  113.                  }
  114.                  rs.close(); //关闭ResultSet对象
  115.                  stmt.close(); //关闭Statement对象
  116.                  con.close();  //关闭Connection对象
  117.                 
  118.             // end
  119.             // HTML // begin [file="/adminmessage.jsp";from=(78,3);to=(84,0)]
  120.                 out.write("rn</table>rnrn</CENTER>rn</BODY>rn</HTML>rn");
  121.             // end
  122.         } catch (Throwable t) {
  123.             if (out != null && out.getBufferSize() != 0)
  124.                 out.clearBuffer();
  125.             if (pageContext != null) pageContext.handlePageException(t);
  126.         } finally {
  127.             if (_jspxFactory != null) _jspxFactory.releasePageContext(pageContext);
  128.         }
  129.     }
  130. }