in reply to Content-Disposition... odd behavior in IE
(This is based on this experience someone else had.)#!/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;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: Content-Disposition... odd behavior in IE
by Rodster001 (Pilgrim) on Jan 14, 2009 at 18:22 UTC | |
by tilly (Archbishop) on Jan 14, 2009 at 18:29 UTC | |
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 | |
by Rodster001 (Pilgrim) on Jan 14, 2009 at 18:39 UTC | |
by tilly (Archbishop) on Jan 14, 2009 at 18:45 UTC |