home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 139 / dpcs0999.iso / Web / CFserver / data1.cab / Documentation / snippets / cfcontent.cfm < prev    next >
Encoding:
Text File  |  1999-04-12  |  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.