Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Tim Morgan http://timmorgan.org

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Force output to download as a file in Rails

   1  
   2  response.headers['Content-Type'] = 'text/csv' # I've also seen this for CSV files: 'text/csv; charset=iso-8859-1; header=present'
   3  response.headers['Content-Disposition'] = 'attachment; filename=thefile.csv'
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS