Hey All,

Here's my sample code:
--------------------------------------------------------------------------
<cfdocument format="FlashPaper" pagetype="letter"
orientation="portrait">

  <!--- REPORT FOOTER --->
  <cfdocumentitem type="footer">
    REPORT FOOTER - should see at bottom of every page
  </cfdocumentitem>
  
  <!--- REPORT HEADER --->
  <cfdocumentsection name="report header">
    REPORT HEADER - should only see at top of first page
  </cfdocumentsection>

  <!--- RULE OUTPUT SECTION --->
  <cfdocumentsection name="Rule Section">
    <cfdocumentitem type="header">
      This is the Header - Should Repeat on Every Page
    </cfdocumentitem>
    <cfloop from="1" to="150" index="i">
      RULE OUTPUT<br />
    </cfloop>
  </cfdocumentsection>
  
</cfdocument>
--------------------------------------------------------------------------

I'm expecting output like this:
--------------------------------------------------------------------------
REPORT HEADER - should only see at top of first page
This is the Header - Should Repeat on Every Page
RULE OUTPUT
RULE OUTPUT
RULE OUTPUT....(to end of page)
REPORT FOOTER - should see at bottom of every page
(new page auto-forced)
This is the Header - Should Repeat on Every Page
RULE OUTPUT
RULE OUTPUT
RULE OUTPUT....(to end of page)
REPORT FOOTER - should see at bottom of every page
(and so on as long as there is content for the Rule Section)
-------------------------------------------------------------------------

What I'm seeing:
-------------------------------------------------------------------------
REPORT HEADER - should only see at top of first page
[BLANK PAGE]
REPORT FOOTER - should see at bottom of every page
This is the Header - Should Repeat on Every Page
RULE OUTPUT
RULE OUTPUT
RULE OUTPUT....(to end of page)
REPORT FOOTER - should see at bottom of every page
(new page auto-forced)
This is the Header - Should Repeat on Every Page
RULE OUTPUT
RULE OUTPUT
RULE OUTPUT....(to end of page)
REPORT FOOTER - should see at bottom of every page
(and so on as long as there is content for the Rule Section)
-------------------------------------------------------------------------

So it seems that CFDOCUMENTSECTION is filling the first page with
whitespace...showing the footer....then showing me what I'd expect.
It's that first blank page that is killing me.

I tried removing the CFDOCUMENTSECTION tags around "REPORT HEADER...."
and then that text simply disappears (along with the blank page)

Any thoughts?

TIA

Cheers


Bryan Stevenson B.Comm.
VP & Director of E-Commerce Development
Electric Edge Systems Group Inc.
phone: 250.480.0642
fax: 250.480.1264
cell: 250.920.8830
e-mail: br...@electricedgesystems.com
web: www.electricedgesystems.com
 
Notice:
This message, including any attachments, is confidential and may contain
information that is privileged or exempt from disclosure. It is intended
only for the person to whom it is addressed unless expressly authorized
otherwise by the sender. If you are not an authorized recipient, please
notify the sender immediately and permanently destroy all copies of this
message and attachments.
Please consider the environment before printing this e-mail



~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:330722
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to