
29/12/2002, 16:02
|
 | | | Fecha de Ingreso: noviembre-2002 Ubicación: Madrid
Mensajes: 854
Antigüedad: 22 años, 5 meses Puntos: 0 | |
Código:
<% Set MyRecordSet = MyConn.Execute(strSQLHoy) %>
<%
Do while not MyRecordset.EOF
If txtFechaHoy <> MyRecordset("FECHA") then
exit do
else %>
<!-- Aqui el codigo de coger las secciones etc....
<% end if
txtFechaHoy = MyRecordset("FECHA")
myrecordset.movenext
loop
myrecordset.close
%>
|