Conditional header in CFDOCUMENT?
I searched around, but could not find a specific answer to this one.
I have a pretty basic report with a cover page that should have no headers or footers, and the rest of the report which should have the same header and footer on each page.
I can't figure out how to use cfdocument so that the header and footer do not appear on the first page. I tried using this code which didn't work:
<cfdocumentitem type="header" >
<cfif cfdocument.currentpagenumber GT 1>
<div style="border-bottom:1px solid #673951;padding-bottom:20px;float:left;width:100%"><img src="../images/logo_print_150.jpg" width="180" height="52" /></div>
</cfif>
</cfdocumentitem>
Is there a way around this?
