Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/09/2006, 10:26
canela2
 
Fecha de Ingreso: junio-2005
Mensajes: 67
Antigüedad: 19 años, 10 meses
Puntos: 0
Prueba con esto es como yo lo hago. Contador indicará el número de columnas que quieres poner.


<table >
<tr>
<%
contador=0
while (not o_rs.Eof)%>
<td >
<% escribe registro
contador =contador +1
if contador = 2 then
contador = 0
response.Write("</tr><tr>")
end if
o_rs.MoveNext
wend
o_rs.close%>
</td>
</tr>
</table>