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 / cfcache.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  495 b   |  21 lines

  1. <!--- This example will produce as many cached files as there
  2.       are possible URL parameter permutations. --->
  3. <CFCACHE TIMEOUT="#DateAdd("h", "-4", Now() )#">
  4. <HTML>
  5. <HEAD>
  6. <TITLE>CFCACHE</TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11.  
  12. <H3>CFCACHE</H3>
  13.  
  14. <H3>This is a test of some simple output</H3>
  15. <CFPARAM NAME="URL.x" DEFAULT="no URL parm passed" >
  16. <P>
  17. <CFOUTPUT>The value of URL.x = # URL.x #</cfoutput>
  18.  
  19. </BODY>
  20. </HTML>       
  21.