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?
|
|
|
|
|
|
|
You need a Content-Disposition header:
|
||
|
|
|
|
You need to use content disposition like:
This will give you a save prompt rather than attempt to render to screen |
||
|
|
