vote up 2 vote down star

In a Web Application I am creating, users can backup their data locally. The backup data is an XML file. At the moment, most browsers try to display this file. What should I change in the HTTP response to suggest to a user-agent that the file should instead be saved?

flag

69% accept rate

2 Answers

vote up 1 vote down check

You need a Content-Disposition header:

Content-Disposition: attachment; filename=my_backup.xml
link|flag
vote up 0 vote down

You need to use content disposition like:

AppendHeader("Content-Disposition", "filename=MyExportedFile.xml");

This will give you a save prompt rather than attempt to render to screen

link|flag

Your Answer

Get an OpenID
or

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