17 Aug
2006
17 Aug
'06
2:51 p.m.
--On 16. August 2006 17:28:00 -0500 Kirk Strauser <kirk@daycos.com> wrote:
I have a Python script that transmits a file to the user. An excerpt:
if not skipctypeheader: # Set the content type if one is defined for the file ctype = file.getProperty('content_type', d=None) if ctype: RESPONSE.setHeader('Content-Type', ctype)
RESPONSE.setHeader('Content-Disposition', 'inline; filename=%s' % filename)
I remember having had similar problems with IE and downloading files. In general we use only content-disposition: attachment for IE vs. content-disposition: inline for all other browsers. After that change we haven't had any bug reports from IE users. -aj