同时显示 cfcontent 和 html

Display cfcontent and html together

我有以下内容:

<cfpdf action="read" name="myPdf" source="c:\test.pdf">
<cfcontent variable="#toBinary(myPdf)#" type="application/pdf" />

而且它确实能正确显示 pdf 文件。但是我需要在页面上添加几个按钮。我尝试了以下方法,但 iPad 上的 Safari 显示效果不佳:

<iframe width="550" height="600" src="c:\test.pdf" frameborder="0"></iframe>

问:我可以在显示 cfcontent 标签之前显示 html 吗?

您可以按照@Leigh 在评论中的建议使用嵌入标签。