cfdocument CF8
I'm creating a report using the cfdocument with CF8
Everything works just fine, I can see my report in the form of pdf using the codes below the problem is that the pdf overwrite my page, what I need is a separate page when the pdf is generated.
I need something like targe="_blank" attribute of the HREF in html where a separate windows/page pop up seperately from the original windows.
Is there attribute of cfdocument that will produce such a thing? I tried overwrite="false" did not work, I tried localurl="no" did not work I guess I just don't know which attribute to use.
Any help is very much appreciated
<cfdocument format="pdf" filename="annualreport.pdf" orientation="landscape" localUrl = "no" overwrite="true">
<table border="0" width="100%" cellspacing="2" cellpadding="1">
<tr><td colspan="12" align="center"><font color="b70000"><b>Report name goes here</b></font>
</td></tr>
My report codes goes here
</table>
</cfdocument><cflocation url="annualreport.pdf" addtoken="false">
