ASP Time Greet
Time Greet
<html>
<body>
<%
dim h
h=hour(now())
response.write("<p>" & now())
If h<12 then response.write("Good Morning!")
else response.write("Good day!")
end if
%>
</body>
</html>
<html>
<body>
<%
dim h
h=hour(now())
response.write("<p>" & now())
If h<12 then response.write("Good Morning!")
else response.write("Good day!")
end if
%>
</body>
</html>