Ver Mensaje Individual
  #2 (permalink)  
Antiguo 12/05/2002, 16:41
almaluz
 
Fecha de Ingreso: diciembre-2001
Mensajes: 262
Antigüedad: 23 años, 3 meses
Puntos: 0
Re: Mostrar 2 items por fila

<table>
<%
columna=0
Do While not rs.Eof
columna=columna+1
%>
<TD> <%= rs("algo_"</td>
<% If columna=2 Then
columna=0
%>
</tr>
<tr>
<%
Else
Response.Write "</TD>"
End If
rs.MoveNext
Loop
%>
</table>

Algo asi utilizo yo ;)

Salu2