home *** CD-ROM | disk | FTP | other *** search
/ Australian Personal Computer 1999 April / APC443.iso / features / grpware / coldfus / coldfusi.exe / data1.cab / Documentation / snippets / cfcontent.cfm < prev    next >
Encoding:
Text File  |  1998-10-08  |  466 b   |  19 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. <BODY>
  10. <H3>CFCONTENT Example</H3>
  11.  
  12. <!--- Files may be set to delete after downloading,
  13. allowing for the posting of changing content. --->
  14. <CFCONTENT TYPE="text/html" 
  15.    FILE="#GetDirectoryFromPath(GetTemplatePath())#sample.htm" DELETEFILE="No">
  16.  
  17. </BODY>
  18. </HTML>       
  19.