104
CFML Language Reference
CFINCLUDE
CFINCLUDE lets you embed references to ColdFusion pages in your CFML. If
necessary, you can embed CFINCLUDE tags recursively.
For an additional method of encapsulating CFML, see the
CFMODULE
tag, used to
create custom tags in CFML.
Syntax
<CFINCLUDE TEMPLATE="template_name">
TEMPLATE
A logical path to an existing page.
Usage
ColdFusion searches for included files as follows:
•
Checks the directory in which the current page lives.
•
Searches directories explicitly mapped in the ColdFusion Administrator for the
included file.
Example
<!--- This example shows the use of CFINCLUDE to paste
pieces of CFML or HTML code into another page dynamically --->
<HTML>
<HEAD>
<TITLE>CFINCLUDE Example</TITLE>
</HEAD>
<BODY>
<H3>CFINCLUDE Example</H3>
<H4>This example includes the main.htm page from the CFDOCS
directory. The images do not show up correctly because
they are located in a separate directory.
However, the page appears fully rendered within the
contents of this page.</H4>
<CFINCLUDE TEMPLATE="/cfdocs/main.htm">
</BODY>
</HTML>
Содержание COLDFUSION 4.5-CFML LANGUAGE
Страница 1: ...Allaire Corporation CFML Language Reference ColdFusion 4 5...
Страница 207: ...Chapter 1 ColdFusion Tags 183 CFCATCH CFTRY BODY HTML...
Страница 224: ...200 CFMLLanguageReference CFOUTPUT P Text within CFOUTPUT is always shown CFOUTPUT BODY HTML...
Страница 296: ...272 CFMLLanguageReference INPUT TYPE text NAME number2 BR INPUT TYPE submit NAME submit VALUE Add FORM BODY HTML...
Страница 336: ...312 CFMLLanguageReference CFIF BODY HTML...
Страница 404: ...380 CFMLLanguageReference DE It is morning CFOUTPUT P BODY HTML...
Страница 413: ...Chapter 2 ColdFusion Functions 389 Customer BalanceDue BR CFOUTPUT CFIF BODY HTML...
Страница 483: ...Chapter 2 ColdFusion Functions 459 CFOUTPUT CFLOOP BODY HTML...
Страница 557: ...Chapter 2 ColdFusion Functions 533 P CFOUTPUT Value i is employee keysToStruct i CFOUTPUT P CFLOOP CFIF BODY HTML...
Страница 584: ...560 CFMLLanguageReference...
Страница 594: ...570 CFMLLanguageReference...