PDA

View Full Version : Display Retrieved Data IN Certain No of Rows


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....

beetle
08-16-2002, 02:46 PM
Is this even a javascript question? That's something you should control with your ASP.