I am trying the last two weeks to convert a query data to ms word doc using Coldfusion.The only approach that i have found is:
<cfcontent type="application/msword">
<cfquery name="getArtist" datasource="cfartgallery">
SELECT *
FROM Artists
</cfquery>
<cfdump var=#getArtist#>
The above is converting the query in doc (you can open it as doc) but if you skip to open the file and directly save it the only way that you can save it is as a ".cfm". This is not what i need. I am trying to build an app that users can download articles in ms word files. Pdf is not an option.
Thank you in advance and be well,
Tom