home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / cfschedule.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  1006 b   |  33 lines

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