|
|
<%
Dim orario, messaggio
Orario = Hour(Now())
if (orario>=7) and (orario<13) then
messaggio = "Buongiorno"
elseif (orario>=13) and (orario<20) then
messaggio = "Buon pomeriggio"
elseif (orario>=20) then
messaggio = "Buona sera"
else
messaggio = "Buona notte"
end if
Response.write " " & messaggio &_
" caro utente! |
|
|||
|
|
|
||||
|
|
|||||