Ver Mensaje Individual
  #5 (permalink)  
Antiguo 05/06/2005, 14:50
EUROJAIME
 
Fecha de Ingreso: agosto-2003
Ubicación: Barcelona
Mensajes: 83
Antigüedad: 21 años, 9 meses
Puntos: 0
paginacion

no me funciona, te paso tu codigo en mi sistema :

<table border="0" class="estilotabla" width="80%" align="center">
<% i = 0 %>
<%
response.write("<tr>")
do while not rs.eof and contador <= cint(tamanopagina) %>

<td class="estilocelda" width="20%"><img src="images/<%=RS("CodigoPropio")%>.jpg" width="200" height="125" ><%= i %></td>
<%
if i mod 3 = 0 then response.write("</tr><tr>")
i = i + 1
%>
</tr>
<%
rs.movenext
response.write("</tr>")
contador=contador+1

loop%>
</table>