我正在使用 ColdFusioncfdocument
标签创建 PDF 文档。工作正常,但是不是在浏览器标题中显示文档名称 - 它显示了我调用以创建 PDF 的 .cfc 文件。
我是这样称呼它的。
<cfdocument format="pdf" marginbottom=".5" margintop=".25" marginright=".5" marginleft=".5" saveAsName="#filename#.pdf">
<cfdocumentitem type="footer">
<p style="font-size:11px; text-align:right; font-style:italic;">Page #cfdocument.currentpagenumber# of #cfdocument.totalpagecount#</p>
</cfdocumentitem>
<html>
<head><title>#filename#.pdf</title></head>
<body><img src="file:///#application.tempFolder#\#thisFilename#" /></body>
</html>
</cfdocument>
我到底错过了什么?为什么它仍然显示我在浏览器标题中调用的 filename.cfc 文件,而不是我给 PDF 的文件名???