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

  1. <!---  This example shows the use of CFCONTENT to return the
  2. contents of the sample.htm dynamically to the browser. --->
  3.  
  4. <HTML>
  5. <HEAD>
  6. <TITLE>CFCONTENT Example</TITLE>
  7. </HEAD>
  8.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11.  
  12. <H3>CFCONTENT Example</H3>
  13.  
  14. <!--- Files may be set to delete after downloading,
  15. allowing for the posting of changing content. --->
  16. <CFCONTENT TYPE="text/html" 
  17.    FILE="#GetDirectoryFromPath(GetTemplatePath())#sample.htm" DELETEFILE="No">
  18.  
  19. </BODY>
  20. </HTML>       
  21.