Ver Mensaje Individual
  #2 (permalink)  
Antiguo 30/05/2003, 11:18
Avatar de bakanzipp
bakanzipp
 
Fecha de Ingreso: noviembre-2001
Ubicación: santiago de shilli
Mensajes: 2.554
Antigüedad: 23 años, 5 meses
Puntos: 0
Código:
sql="select top 12  campo1,campo2  from tabla   where..."                 
..
..
<table  border=1>
<tr>
<% i=0
while not rs.eof %>
<td><%=rs("campo1")%></td>
<%if  i=6  then%>
</tr><tr>
<%end  if 
rs.movenext
wend
%>
</tr>
</table>