|
MENU |
|
<%
While ((Repeat1__numRows <> 0) AND (NOT menu.EOF))
%>
|
|
<%
Repeat1__index=Repeat1__index+1
Repeat1__numRows=Repeat1__numRows-1
menu.MoveNext()
Wend
%>
|
|
LIBRO DE VISITAS
|
|
<%
While ((Repeat3__numRows <> 0) AND (NOT visitas.EOF))
%>
<% If Not visitas.EOF Or Not visitas.BOF Then %>
<%=(visitas.Fields.Item("nombre").Value)%>
<% if (visitas.Fields.Item("email").Value)<> "" then%>
">
<% end if%>
<% if (visitas.Fields.Item("web").Value) <> "http://" then%>
">
<% end if%>
<%if session("elpilar_admin") <> "" then %>
">
<% end if %>
|
<%
fecha_15_aux = (visitas.Fields.Item("fecha").Value)
fecha_15_aux = Replace(fecha_15_aux, "/", "")
fecha_15_dia = Mid(fecha_15_aux, 1, 2)
fecha_15_mes = Mid(fecha_15_aux, 3, 2)
fecha_15_ano = Mid(fecha_15_aux, 5, 4)
fecha_15 = fecha_15_mes & "/" & fecha_15_dia & "/" & fecha_15_ano
%>
<%= DoDateTime((visitas.Fields.Item("fecha").Value), 1, 3082) %> |
<%=(visitas.Fields.Item("mensaje").Value)%> |
<% if (visitas.Fields.Item("opinion").Value) <> "" then %>
Opinión de la Web |
<%=(visitas.Fields.Item("opinion").Value)%> |
<% end if %>
<% if (visitas.Fields.Item("scout").Value) <> "" then %>
¿Eres Scout? |
<% if (visitas.Fields.Item("scout").Value) = TRUE then%>
Si
<% else %>
No
<% end if %>
|
<% end if %>
<% if (visitas.Fields.Item("edad").Value) <> "" then %>
<% end if %>
<% End If ' end Not visitas.EOF Or NOT visitas.BOF %>
<%
Repeat3__index=Repeat3__index+1
Repeat3__numRows=Repeat3__numRows-1
visitas.MoveNext()
Wend%>
|
|
|