Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
<cfcontent type="application/msword">
<cfheader name="Content-Disposition" value="filename=whatever.doc">
<!--- obviously you can use whatever CFML you need to to put values into the variables... queries, loops, whatever --->
<CFSET SomeVariable = "Hello World">
<CFSET SomeOtherVariable = "This should be a Word document">
<CFOUTPUT>
#SomeVariable##Chr(13)#
#SomeOtherVariable ##Chr(13)#
</CFOUTPUT>