|
|
Hours
Regular Pool Hours begin Saturday of Memorial
Day weekend and end Labor Day
<%
dim cn, rs, sql
sql = "SELECT hours_id,sort_order,hours,hours_note " & _
"from hours order by sort_order, hours"
set cn = getConnectionLocal(server.mappath(DB_PATH2),"","")
set rs = cn.Execute( sql )
do while not rs.EOF
response.write "| " & rs("hours_note") & ": | "
response.write "" & rs("hours") & " | "
rs.moveNext
loop
rs.close
set rs = nothing
cn.close
set cn = nothing
%>
|