ciao, ho letto qualcosa su questo forum ma qualcuno mi può aiutare con la paginazione orizzontale? cioè devo semplicemente, si fa per dire, scorrere i record a 5 a 5

con questo li vissualizzo solo in verticale, andando a capo per ogni record:
<table width="100%" border="0" cellpadding="0" id="prodotti">
<tr>
<% cont=0
While ((Repeat1__numRows <> 0) AND (NOT rs.EOF))

cont=cont+1
testo = rs("testo")
Call MakeLinks(testo)
foto=rs("foto")
if foto="0" then
foto="images/nofoto.gif"
else
foto="public/images/"&foto
end if
fotogrande=rs("fotogrande")
if fotogrande="0" then
fotogrande="images/nofoto.gif"
else
fotogrande="public/images/"&fotogrande
end if
aa=rs("id")
aa=cInt(aa)
%>

<td width="33%">

<table width="100%" border="0" cellpadding="0">
<tr>
<td width="100" rowspan="4"><img src=<%=foto%> width="100" height="100" /></td>
<td><a href="#" class="middletxtlink"><%=rs("nome")%>
</a></td>
</tr>
<tr>
<td class="middletxt">&euro; <%=rs("prezzo")%> </td>
</tr>
<tr>
<td><a href="scheda.asp?id=<%=aa%>" class="middletxtlink">Aggiungi
al Carrello </a></td>
</tr>
<tr>
<td></td>
</tr>
</table>


</td>

<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
rs.MoveNext()
Wend

%>
</tr>
</table>

grazie scusate so che dovrebbe essere facile....