Saluto & Ora

Questo script renderà possibile salutare gli utenti in base all'orario della visita:

<%
function saluto(h)
if (h>=0)AND(h<=7) then
saluto="Buona Notte"
end if
if (h>=8)AND(h<=12) then
saluto="Buon Giorno"
end if
if (h>=13)AND(h<=18) then
saluto="Buon Pomeriggio"
end if
if (h>=19)AND(h<=22) then
saluto="Buona Sera"
end if
if (h>=23)AND(h<=24) then
saluto="Buona Notte"
end if
saluto = "<b>"&saluto&"</b>"
end function 
response.write saluto(datePart("h",now()) )
%>