
17/09/2004, 13:02
|
 | Colaborador | | Fecha de Ingreso: enero-2002 Ubicación: Centro de la república
Mensajes: 8.849
Antigüedad: 23 años, 3 meses Puntos: 146 | |
Podría ser algo así:
Código:
<table border=1>
<tr><td valign="top">
<%
LimMax = 15 'Puede ser el recordount
for i=1 to LimMax
if i = 1 Then
%><table border=1><%
End If
if i = CInt(LimMax/2)+1 Then
%></table><td valign="top"><table border=1><%
End if
%><tr><td>Ciclo<td><%=i%><%
Next
%>
|