
26/11/2002, 13:21
|
 | | | Fecha de Ingreso: febrero-2002 Ubicación: España
Mensajes: 2.364
Antigüedad: 23 años, 3 meses Puntos: 1 | |
Un tipico bucle for / next:
<%
for contador=1 to 5
intTotalRecords = rs.RecordCount
Randomize()
intRandomNumber = Int((intTotalRecords * Rnd))
rs.Move intRandomNumber
respose.write("loquesea")
' etc etc
next
%> |