In the attached code, the two RTFPageBreaks outside the CFLOOP generate page
breaks correctly in the RTF file. The RTFPageBreak within the loop however does
not! Help! This is driving me nuts - have pared my code back to the bare
minimum and tried cfoutputting over the query or looping with the same result.
I am running on CF6.1, Win2k all service packs and have testing on another
machine with same result.

many thanks!

Jon

<cfset RTFPageBreak = "<br clear='all' style='page-break-before:always' />">
<cfheader name="Content-Disposition" value="attachment;filename=filename.rtf">
<cfcontent type="application/rtf">
<cfoutput>
<h2>Cover Page</h2>
#RTFPageBreak#
<cfloop query="qR">
#vname#
#RTFPageBreak#
</cfloop>
#RTFPageBreak#
h2>Closing Page</h2><strong></cfoutput>