How to add page break in a PDF document in ColdFusion

cfdocument - page break in printable document

cfdocumentPagebreak.cfm


<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>cfdocument tag: how to use pagebreak (page break) as cfdocumentitem type in printable document</title>
</head>

<body>

<cfquery name="qParks" datasource="cfdocexamples" maxrows="10">
 SELECT ParkName, City FROM PARKS
</cfquery>

<cfdocument format="pdf">
 <cfoutput>
        <cfdocumentitem type="header">
            This isPage Header <br />
            Total Page Count: #cfdocument.totalpagecount#
        </cfdocumentitem>

        <cfdocumentsection>
            <h3 style="color:Crimson; font-style:italic">
                cfdocument example: using page break
            </h3>
            <cftable query="qParks" colheaders="yes" htmltable="no" border="no">
                <cfcol header="Park Name" text="#ParkName#">
                <cfcol header="City" text="#City#">
            </cftable>
            <cfdocumentitem type="pagebreak">
            </cfdocumentitem>
            <h3 style="color:DimGray; font-style:italic">
                This is another page
            </h3>
        </cfdocumentsection>
 </cfoutput>
</cfdocument>

</body>
</html>









More ColdFusion examples