I can't seem to open a powerpoint(ppt) doc using cfcontent. My code has no problem opeing other types of office docs. Below is the code:
<cfheader name="content-disposition" value="attachment; filename=#qry.clientFile#"/>
<cfcontent type="#qry.contentType#/#qry.contentSubType#" variable="#qry.documentData#"/>
qry.clientFile = Presentation2.ppt
qry.contentType = application
qry.contentSubType = vnd.ms-powerpoint
qry.documentData = the doc itself
I'm using the line aboves to open other doc no problem. Also, I'm trying to open a office 2003 ppt file in office 2007.
Any help would be great.
Don