Skip to content

Instantly share code, notes, and snippets.

@jsteinshouer
Last active April 22, 2016 18:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jsteinshouer/5f96b66bec0e8c94348a67e2fa2619e6 to your computer and use it in GitHub Desktop.
Save jsteinshouer/5f96b66bec0e8c94348a67e2fa2619e6 to your computer and use it in GitHub Desktop.
CSV Download Example
<cfset csv = io.queryToCSV(query=qMyQuery,fields="field1,field2,field3,...")>
<cfheader name="Content-disposition" value="attachment;filename=MyCSVFile.csv">
<cfcontent type="text/csv">
<cfoutput>#csv#</cfoutput>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment