<html>
<head>
<title>My
First ASP Page</title>
</head>
<body
bgcolor="#FFFFFF" text="#000000"
link="#003300" vlink="#006600"
alink="#689577">
<%
'Dimension
variables
Dim
MyVariable 'Comment on what this variable holds
<br><br>
<font face="Arial" size="2" color="#000000"><%= MyVariable
%><br><br>
Server Date &
Time is: <%=
Now() %><br><br>
Server Time is:
<%= Time() %> <br><br>
Server Date is:
<%= Date() %><br><br>
Current Hour is:
<%=
Hour(Now()) %><br><br>
Current Minute
is: <%=
Minute(Now()) %><br><br>
Current Second
is: <%=
Second(Now()) %><br><br>
vbGeneralDate: <%=
FormatDateTime(Now(), 0) %><br><br>
vbLongDate: <%=
FormatDateTime(Now(), 1) %><br><br>
vbShortDate: <%=
FormatDateTime(Now(), 2) %><br><br>
vbLongTime: <%=
FormatDateTime(Now(), 3) %><br><br>
vbShortTime: <%=
FormatDateTime(Now(), 4) %><br><br>
<%
Dim intHour 'Variable to hold hour
intHour = Hour(Now())
If intHour > 12 Then'If hour is under 5 pm then afternoon
If intHour < 17 Then %>
Good Afternoon!
<% Else %>
Good Evening!
<% End If
Else %>
Good Morning!
<% End If %>