I am using Django to download a CSV file like this:
response['Content-Type'] = 'application/force-download'
response['Cache-Control'] = 'public'
response['Content-Disposition'] = 'attachment; filename="results.csv"'
writer = UnicodeWriter(response, quoting=csv.QUOTE_ALL, encoding="utf-8")
It works in FF, Chrome, IE>=9 but not IE<=8
Does anyone know what the difference is?