jsp中动态获取表格出现的问题
一个表格列数固定,标题行只显示一次,内容行数从数据库获取
表格格式如下
-------------------------------------
标题一|标题二|标题三|标题四|标题五|标题六
-------------------------------------
内容一|内容二|内容三|内容四|内容五|内容六
-------------------------------------
内容一|内容二|内容三|内容四|内容五|内容六
-------------------------------------
内容一|内容二|内容三|内容四|内容五|内容六
......
现在已经能够显示,但是标题行显示N次如下:
-------------------------------------
标题一|标题二|标题三|标题四|标题五|标题六
-------------------------------------
内容一|内容二|内容三|内容四|内容五|内容六
-------------------------------------
标题一|标题二|标题三|标题四|标题五|标题六
-------------------------------------
内容一|内容二|内容三|内容四|内容五|内容六
-------------------------------------
标题一|标题二|标题三|标题四|标题五|标题六
-------------------------------------
内容一|内容二|内容三|内容四|内容五|内容六
-------------------------------------
标题一|标题二|标题三|标题四|标题五|标题六
-------------------------------------
内容一|内容二|内容三|内容四|内容五|内容六
......
我的代码如下:
<%@page contentType="text/html;charset=gbk" %>
<html>
<jsp:useBean id="mdb1" class="ckstudio.db.faq" scope="page"/>
<table width="100%" border="0" align="center" cellpadding="0" cellspacing="1" style="margin-bottom: 6">
<%
String user_name,sql1;
if (session.getAttribute("user_name")==null){
response.sendRedirect("index.jsp");
}
else{//-------------------------------logged--------begin------------------------------------------
ResultSet rs1;
user_name=(String)session.getValue("user_name");
sql1="select * from db01 where SellerName='"+user_name+"'";
rs1=mdb1.executeQuery(sql1);
while (rs1.next()){
%>
<table border>
<tr>
<th width="150">商品名</td>
<th width="160">出售时间</td>
<th width="150">出售价格</td>
<th width="150">最高出价</td>
<th width="150">出价会员</td>
<th width="150">结束时间</td>
</tr>
<%
String g,b,c,d,e,f;
int i=rs1.getInt("ItemID");
out.print("<tr>");
g=rs1.getString(3);
out.print("<td>"+g+"</td>");
b=rs1.getString(7);
out.print("<td>"+b+"</td>");
c=rs1.getString(6);
out.print("<td>"+c+"</td>");
d=rs1.getString(10);
out.print("<td>"+d+"</td>");
e=rs1.getString(11);
out.print("<td>"+e+"</td>");
f=rs1.getString(8);
out.print("<td>"+f+"</td>");
out.print("</tr>");
}}%>
</table>
谁知道的能不能告诉我下怎么改让标题行只显示一次?