完整代码如下:请帮忙
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<html>
<head>
<title>连续滚动的图片</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
 <% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    Connection con = DriverManager.getConnection("jdbc:odbc:football","sa","198296");
Statement stmt=con.createStatement();
ResultSet rs = stmt.executeQuery("SELECT * FROM menber");

%>
<body bgcolor="#fef4d9">
<%= rs.getString("m_id")%>
<table width="70%"  border="1" cellspacing="0" cellpadding="0">
  <tr>
    <td width="33%"></td>
    <td width="21%">&nbsp;</td>
    <td width="46%">&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
    <td>&nbsp;</td>
  </tr>
</table>
<%
rs.close();
stmt.close();
con.close();
%>
</body>
</html>