I have a export to csv script, which works perfectly on all HTTP connections under all browsers, using the following headers:
Code: Select all
Header("Content-Disposition: attachment; filename=something.csv");
Header("Connection: Close");
Header("Content-Type: text/plain");How, ever, in IE6 over HTTPS, this does not happen... All that happens is that te Filename displayed is the full URL, and Content Type is blank. On clicking on either open or save you get the nice friendly message that the server could not be contacted.
Am a little confused, as it seems that IE6 is choosing to ignore whats been sent back 2 it?
Are there some extra headers I need to pass?