home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1999 November / PCONLINE_11_99.ISO / filesbbs / OS2 / APCHSSL2.ZIP / OS2HTTPD / public / htdocs / gsp / date_test.gsp < prev    next >
Encoding:
Text File  |  1999-02-01  |  370 b   |  22 lines

  1. <html>
  2. <head>
  3.  <title>This is a test</title>
  4. </head>
  5.  
  6. <body bgcolor="#ffffff">
  7.  
  8. <h1>Date Test</h1>
  9.  
  10. <!-- you can place imports anywhere on the page.. 
  11.      we recommend you place them near the top :-)  -->
  12. <java type="import">java.util.Date</java>
  13.  
  14. <java>
  15.     Date d = new Date();
  16.     out.println("The current date is: " + d);
  17. </java>
  18.  
  19. <p><hr><p>
  20.  
  21. Did you see the date?
  22.