Macromedia coldfusion 4.5-cfml language reference User Manual

Page of 608
Chapter 1:  ColdFusion Tags
29
<BODY>
<H3>CFCONTENT Example</H3>
<!--- Files may be set to delete after downloading,
allowing for the posting of changing content. --->
<CFCONTENT TYPE="text/html" 
   FILE="c:\inetpub\wwwroot\cfdocs\main.htm" DELETEFILE="No">
</BODY>
</HTML>       
<!--- This example shows how the RESET attribute changes textual 
output. --->
<HTML>
<HEAD>
<TITLE>
CFCONTENT Example 2
</TITLE>
</HEAD>
<BODY>
<H3>CFCONTENT Example 2</H3>
<P>This example shows how the RESET attribute changes the output for 
text.</P>
<P>RESET = "Yes ": 123<CFCONTENT type="text/html" reset= "Yes ">456</P>
<P>This example shows how the RESET attribute changes the output for 
text.</P>
<P>RESET = "No ": 123<CFCONTENT type="text/html" reset= "No ">456</P>
</BODY>
</HTML>