I have the following:
<cfpdf action="read" name="myPdf" source="c:\test.pdf">
<cfcontent variable="#toBinary(myPdf)#" type="application/pdf" />
And it does display the pdf file correctly. But I need to add a few buttons to the page. I've tried the following, but Safari on the iPad doesn't display this very well:
<iframe width="550" height="600" src="c:\test.pdf" frameborder="0"></iframe>
Q: Can I display html before I display the cfcontent tag?