home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_07.cab / ContentRotator_JScript.asp < prev    next >
Text File  |  1997-10-25  |  736b  |  35 lines

  1. <%@ LANGUAGE = JScript     %>
  2.  
  3. <%
  4.     // Ensure that the client-browser doesn't cache
  5.     Response.Expires = 0;
  6. %>
  7.  
  8. <HTML>
  9.     <HEAD>
  10.         <TITLE>Content Rotator Sample</TITLE>
  11.     </HEAD>
  12.  
  13.  
  14.     <BODY BGCOLOR="White" topmargin="10" leftmargin="10">
  15.  
  16.         <!-- Display Header -->
  17.  
  18.         <font size="4" face="Arial, Helvetica">
  19.         <b>Contenet Rotator Sample</b></font><br>
  20.       
  21.         <hr size="1" color="#000000">
  22.  
  23.         <% 
  24.             var Tip;
  25.             Tip = Server.CreateObject("MSWC.ContentRotator");
  26.  
  27.             Response.Write(Tip.ChooseContent("tiprot.txt"));
  28.         %>
  29.  
  30.         <hr size="1" color="#000000">
  31.         <A href="ContentRotator_VBScript.asp">Refresh (You may have to do this several times)</A>
  32.  
  33.     </BODY>
  34. </HTML>
  35.