Hi all -

I'm pushing content to a template which i have built to properly
organize the data for an excel spreadsheet.  I'm generating the
response in my view as such:

       response = render_to_response("spreadsheet.html", {
            'tms': tms,
        })
        response['Content-Type'] = 'application/vnd.ms-excel'
        response['Content-Disposition'] = 'attachment;filename=biblio-
export.xls'
        response['Charset']='UTF-8'
        return response


This works great with one exception.  It saves the file to the
person's last saved location... in my case it's the desktop, in other
cases it's /downloads etc....

Is there a way to force the SAVE option so that when they click SAVE,
the user can determine where to put the file?  My testing so far
indicates this is not browser independent
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
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