Convery doc to html with coldfusion

时间:2016-09-09 14:07:23

标签: coldfusion ms-word

我知道coldfusion对word文档有一些处理,即将它们转换为.pdf。我希望在没有用户转换它们的情况下内联显示文档。我可以以编程方式执行"另存为..."在" wsFormatFilteredHTML"格式?

1 个答案:

答案 0 :(得分:1)

试试这个。

如果您的文字内容是变量:

<cfheader name=“Content-disposition” value=“attachment;filename=blah.docx”>
<cfcontent type="application/msword" reset="yes">
#wordconent#

如果它是实际文件,您应该可以直接提供:

<cfcontent type="application/msword" file="path/filename.docx">

这是来自内存所以可能需要一些试验和错误。祝你好运:)