Hi all. Another n00b question. I'm trying to send an Excel file to the
user thusly:

fullpath = os.path.join('C:/', 'text.xls')
response = HttpResponse(file(fullpath).read(), mimetype='application/
vnd.ms-excel')
response['Content-disposition'] = 'Attachment; filename=extract.xls'
return response

The file is sent to the browser (Firefox), which understands the
mimetype correctly and hands the file off to Excel. However, Excel
says that the file is in an unrecognized format. When I open the file
with Excel, it's garbled. The text file is a known good file. Any
ideas?


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to