home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 9 / IOPROG_9.ISO / contrib / iis4 / iis4_07.cab / Components_JScript < prev    next >
Encoding:
Text File  |  1997-08-28  |  730 b   |  45 lines

  1. <%@ LANGUAGE = JScript %>
  2.  
  3. <HTML>
  4.     <HEAD>
  5.         <TITLE>Conditional Operator Sample</TITLE>
  6.     </HEAD>
  7.  
  8.     <BODY BGCOLOR="White" topmargin="10" leftmargin="10">
  9.  
  10.  
  11.         <!-- Display Header -->
  12.  
  13.         <font size="4" face="Arial, Helvetica">
  14.         <b>Conditional Operator Sample</b></font><br>
  15.       
  16.         <hr size="1" color="#000000">
  17.  
  18.         
  19.         <!-- Declare Variables -->
  20.  
  21.         <% var dtmVar = new Date(); %>
  22.         
  23.         <!-- If...Else example -->
  24.  
  25.         <H3>If...Then</h3>
  26.  
  27.         <P>The time is: <%=dtmVar%></p>  
  28.  
  29.         <P>Good 
  30.         
  31.         <!-- Check the current time for AM/PM -->
  32.  
  33.         <% if (dtmVar.getHours() > 17) %>   
  34.         
  35.         Evening</p>
  36.         
  37.         <% else %>
  38.  
  39.         Morning</p>
  40.  
  41.         <% ; %>
  42.  
  43.     </BODY>
  44. </HTML>
  45.