in reply to Re^2: Content-Disposition... odd behavior in IE
in thread Content-Disposition... odd behavior in IE
Update: And if that doesn't work, perhaps#!/usr/bin/perl use strict; print "Content-type: application/octet-stream\n"; print "Cache-Control: private\n"; print "Content-Disposition: attachment; filename=big-test.csv\n\n"; print "Test,One,Two,Three\n"; exit;
(It is frustrating that I can't test these suggestions, but I don't have IE to test with and it is a browser issue.)#!/usr/bin/perl use strict; print "Pragma: \n"; print "Cache-Control: \n"; print "Content-Disposition: attachment; filename=\"big-test.csv\"\n"; print "Content-type: application/octet-stream\n\n"; print "Test,One,Two,Three\n"; exit;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^4: Content-Disposition... odd behavior in IE
by ikegami (Patriarch) on Jan 14, 2009 at 18:50 UTC | |
by tilly (Archbishop) on Jan 14, 2009 at 19:04 UTC | |
by Rodster001 (Pilgrim) on Jan 14, 2009 at 19:31 UTC | |
Re^4: Content-Disposition... odd behavior in IE
by Rodster001 (Pilgrim) on Jan 14, 2009 at 18:39 UTC | |
by tilly (Archbishop) on Jan 14, 2009 at 18:45 UTC |