home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 9 / IOPROG_9.ISO / contrib / iis4 / iis4_07.cab / Conditional_VBScript.asp < prev    next >
Encoding:
Text File  |  1997-08-31  |  722 b   |  41 lines

  1. <%@ LANGUAGE = VBScript %>
  2. <%  Option Explicit     %>
  3.  
  4. <HTML>
  5.     <HEAD>
  6.         <TITLE>Conditional Operator Sample</TITLE>
  7.     </HEAD>
  8.  
  9.     <BODY BGCOLOR="White" topmargin="10" leftmargin="10">
  10.  
  11.  
  12.         <!-- Display Header -->
  13.  
  14.         <font size="4" face="Arial, Helvetica">
  15.         <b>Conditional Operator Sample</b></font><br>
  16.       
  17.         <hr size="1" color="#000000">
  18.  
  19.  
  20.         <!-- If...Then example -->
  21.  
  22.         <P>The date is: <%=Now%></p>  
  23.  
  24.  
  25.         <%
  26.             ' Check for AM/PM, and output appropriate message
  27.         
  28.             if (Right(Now,2)="AM") Then
  29.             
  30.                 Response.Write("<P>Good Morning</p>")
  31.                 
  32.             Else
  33.             
  34.                 Response.Write("<P>Good Evening</p>")
  35.                 
  36.             End If
  37.         %>
  38.  
  39.     </BODY>
  40. </HTML>
  41.