When we updated to Office 2007, we also needed to update cfheader and cfcontent tags to accommodate .docx and other 'x' extensions for our dynamically created documents.
Example:
<cfheader name="Content-Disposition" value="attachment:filename=myfile">
<cfcontent type="application/vnd.openxmlformats-officedocument.wordprocessingml.document">
This does open the document. However, when a user tries to save it, it defaults to .html extension instead of .docx. Any ideas?
---
Previously, tags looked like this:
<cfheader name="Content-Disposition" value="attachment:filename=myfile.doc">
<cfcontent type="application/vnd.msword">
---