
19/05/2003, 09:04
|
 | | | Fecha de Ingreso: febrero-2002 Ubicación: España
Mensajes: 2.364
Antigüedad: 23 años, 3 meses Puntos: 1 | |
La idea es esta:
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<%for i=1 to 20%>
<td><%=i%></td>
<%
counter=counter+1
If counter MOd 2=0 Then Response.Write "</tr><tr>"
Next
%>
</tr>
</table>
modificalo para que en vez de un bucle for/next y muestre el valor <%=i%> este leyendo el recorddset <%=rs("tucampo")%> |