<% ' APRO IL RECORDSET rs.Open "SELECT * FROM offerte ORDER BY id DESC", cn, 1 ' EFFETTUO MATERIALMENTE LA PAGINAZIONE rs.PageSize = quanti rs.AbsolutePage = pag ' ESEGUO IL CICLO While rs.EOF = False And contatore < quanti %>
<%=Server.HTMLEncode(Rs("titolo"))%>
<%=Server.HTMLEncode(Rs("testo"))%>
<% rs.MoveNext ' INCREMENTO IL VALORE DEL CONTATORE contatore = contatore + 1 Wend %>
<%If pag > 1 Then%> Indietro <%End If%> <% Dim x x = 1 For x = 1 To rs.PageCount If CInt(pag) <> x Then %> [<%=x%>] <% Else %> [<%=x%>] <% End If Next %> <%If rs.EOF = False Then%> Avanti <%End If%>