home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / cfschedule.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  1.0 KB  |  35 lines

  1. <!--- This view-only tag shows an example of CFSCHEDULE --->
  2. <HTML>
  3. <HEAD>
  4. <TITLE>CFSCHEDULE Example</TITLE>
  5. </HEAD>
  6.  
  7. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  8. <BODY  bgcolor="#FFFFD5">
  9.  
  10. <H3>CFSCHEDULE Example</H3>
  11.  
  12. <P>CFSCHEDULE provides a programmatic interface to
  13. the Cold Fusion scheduling engine.  You can run a specified
  14. page at scheduled intervals with the option to write out
  15. static HTML pages.  This allows you to offer users access 
  16. to pages that publish data, such as reports, without
  17. forcing users to wait while a database transaction is performed
  18. to populate the data on the page.
  19.  
  20. <!--- <CFSCHEDULE ACTION="UPDATE"
  21.             TASK="TaskName" 
  22.             OPERATION="HTTPRequest"
  23.             URL="http://127.0.0.1/playpen/history.cfm"
  24.             STARTDATE="8/7/98"
  25.             STARTTIME="12:25 PM"
  26.             INTERVAL="3600"
  27.             RESOLVEURL="Yes"
  28.             PUBLISH="Yes"
  29.             FILE="sample.html"
  30.             PATH="f:\inetpub\wwwroot\playpen"
  31.             REQUESTTIMEOUT="600"> --->
  32.  
  33. </BODY>
  34. </HTML>       
  35.