ciao a tutti, c'è un modo per paginare questa pagina di cui allego il codice? vi ringrazio, daniele
<%@LANGUAGE = JScript%>
<!--#include file="config.inc"-->
<%
var Rs = Cn.Execute("SELECT * FROM tabella ORDER BY data DESC");
%>
<html>
<head>
<title>Anagrafica Clienti 2006</title>
<%
if (Rs.EOF) Response.Write("<td colspan=\"4\">Nessun dato</td>");
else while (!Rs.EOF)
{
%>
<tr>
<td width="29" align="center"><a href="modifica.asp?id=<%=Rs("id")%>">Mod.</a></td>
<td width="38" align="center"><%=Server.HTMLEncode(Rs("id"))%></td>
<td width="107"><%=Server.HTMLEncode(Rs("cognome"))%></td>
<td width="107"><%=Server.HTMLEncode(Rs("nome"))%></td>
<td width="69"><%=Server.HTMLEncode(Rs("tipinfo"))%></td>
</tr>
<%
Rs.Movenext();
}
%>
</table>
</body>
</html>
<%Cn.Close()%>
<%
}
%>
