Ver Mensaje Individual
  #16 (permalink)  
Antiguo 24/09/2004, 02:31
Avatar de mrgubu
mrgubu
 
Fecha de Ingreso: febrero-2002
Ubicación: Granada
Mensajes: 431
Antigüedad: 23 años, 2 meses
Puntos: 2
Creo que valdría esto :

Código:
<table>
<tr>
  <% Do While Not rs.EOF %>
  <td><%=rs("campo")%></td>
  <% counter=counter+1
  If counter Mod 2=0 Then Response.Write "</tr><tr>"
  rs.MoveNext
  Loop %>
</tr>
</table>

Última edición por mrgubu; 24/09/2004 a las 02:33