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 / cfinclude.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  594 b   |  26 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.  
  9. <BASEFONT FACE="Arial, Helvetica" SIZE=2>
  10. <BODY  bgcolor="#FFFFD5">
  11.  
  12. <H3>CFINCLUDE Example</H3>
  13.  
  14. <P>This example includes the main.htm page from the CFDOCS
  15. directory.  The images do not show up correctly because
  16. they are located in a separate directory.
  17. However, the page appears fully rendered within the
  18. contents of this page.</P>
  19. <CFINCLUDE TEMPLATE="/cfdocs/main.htm">
  20.  
  21.  
  22.  
  23. </BODY>
  24.  
  25. </HTML>
  26.