LZS
08-16-2002, 02:45 AM
After i retrieve the data from the database, there is a very long list of data. is there a way to display them in rows of ten or twenty?
What i have now is:
<%
while (rs.next())
{
<% out.println(rs.getString(1));
%>
<%}
rs.close();
statement.close();
%>
Pls help....
What i have now is:
<%
while (rs.next())
{
<% out.println(rs.getString(1));
%>
<%}
rs.close();
statement.close();
%>
Pls help....