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

  1. <!--- This example shows the use of CFINCLUDE to paste
  2. pieces of CFML or HTML code into another page dynamically --->
  3. <HTML>
  4.  
  5. <HEAD>
  6.     <TITLE>CFINCLUDE Example</TITLE>
  7. </HEAD>
  8. <BODY>
  9.  
  10. <H3>CFINCLUDE Example</H3>
  11.  
  12. <H4>This example includes the main.htm page from the CFDOCS
  13. directory.  The images do not show up correctly because
  14. they are located in a separate directory.
  15. However, the page appears fully rendered within the
  16. contents of this page.</H4>
  17. <CFINCLUDE TEMPLATE="/cfdocs/main.htm">
  18.  
  19.  
  20.  
  21. </BODY>
  22.  
  23. </HTML>
  24.