vote up 1 vote down star

I would like a "Save As ..." dialog box to appear when a user clicks on a hyperlink.

I'm currently sending the HTTP headers:

application/octet-stream Content-Disposition: inline;filename=something.doc

Apparently IE users are seeing the page render inline as garbled ascii. What is the best way to force a "Save As ..." dialog box to pop up on IE?

flag

0% accept rate

1 Answer

vote up 5 vote down

Try Content-Disposition: Attachment

link|flag
A couple additional notes: You can add ";filename=(your filename)" to give the download a default file name (useful to avoid downloads with .aspx and .php extensions". Also, ensure that you have a non-zero expiry with anything that launches a download prompt - IE has a bug that will error out on downloads for anything set to immediately expire (might be fixed in 8, was definitely present in 7). – Ryan Brunner Nov 2 at 16:45
@Ryan: That remains true for HTTPS. – EricLaw -MSFT- Dec 15 at 22:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.