<table width="200" border="1">
<%
if (sp.next()) {
sp.previous();
while(sp.next()){
%>
<tr>
<td><%=sp.getString("productname")%></td>
<%if (sp.next()){%>
<td><%=sp.getString("productname")%></td>
</tr>
<%}
}
}
%>
</table>
我又想了下这样可以实现效果!
[此贴子已经被作者于2007-5-28 0:57:07编辑过]