Esta es una paginación muy básica, implantala y ya me cuentas
Código:
if rs.RecordCount >= 6 then
dividir_resp = (rs.RecordCount) / 5
valor = Mid(dividir_resp,3,2)
total = dividir_resp + entero(valor)
entero_total = Mid(total,1,1)
%>
<b>Ir a </b>
<%
For I = 1 to CInt(entero_total)
If I = pagina_actual Then
%>
[<b><%= I %></b>] <%Else%><a href="./xxx.asp?show=<%=I%>"><%=I%></a><%if I < CInt(entero_total) then%>,
<%
end if
End If
Next
elseif rs.RecordCount <=5 then
[<b><%= I %></b>]&
end if
Suerte