vote up 0 vote down star

Is there anyway to force Internet Explorer to prompt for download of XML files instead of automatically displaying them? A code solution or just a set of IE configuration steps would be fine.

Even if I use the wrong extension, IE uses "content sniffing" to determine that is XML and opens it automatically anyway.

I'd rather have the Open/Save/Cancel dialog instead.

Thanks in advance

flag

80% accept rate

1 Answer

vote up 1 vote down check

You need to set the Content-Disposition HTTP header to "attachment". Doing this will be different depending on which framework or web-server you're using. For instance, in PHP you can use the following code:

header('Content-Disposition: attachment; filename="myfile.xml"');
header('Content-Type: application/xml');
link|flag
This worked, thanks – mjmarsh Oct 29 at 18:29

Your Answer

Get an OpenID
or

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