home *** CD-ROM | disk | FTP | other *** search
/ Mastering Visual Basic 6 / mastvb6.iso / ch_code / ch22 / greet.asp < prev    next >
Encoding:
Text File  |  1998-07-13  |  292 b   |  17 lines

  1. <HTML>
  2. <BODY>
  3. <%
  4. If Time() >=#12:00:00 AM# And Time() < #12:00:00 PM#  Then
  5.   greeting = "Good Morning!"
  6. Else
  7.   greeting = "Good Afternoon!"
  8. End If
  9. %>
  10. <H1> <% =greeting %> </H1>
  11. <BR>
  12. <H2>and welcome to the Active Server Pages.</H2>
  13. <BR>
  14. More HTML lines follow
  15. </BODY>
  16. </HTML>
  17.