Guestbook
Add to Guestbook
<%
dim numvisits
response.cookies("NumVisits").Expires=date+365
numvisits=request.cookies("NumVisits")
if numvisits="" then
response.cookies("NumVisits")=1
response.write("Welcome! This is the first time you have visited this page.
Please use the form below to add / check / delete / edit bookings -")
else
response.cookies("NumVisits")=numvisits+1
response.write("You have visited this ")
response.write("Web page " & numvisits)
if numvisits=1 then
response.write " time before!
Please use the form below to add / check / delete / edit bookings -"
else
response.write " times before!
Please use the form below to add / check / delete / edit bookings -"
end if
end if
%>
