Tagged Questions
The Content-Disposition response header field is used in HTTP web responses to convey additional information about how to process a response payload. It can also be used to attach additional metadata such as a filename to the response.
11
votes
2answers
3k views
How to set response filename without forcing saveas dialog
I am returning a stream in some response setting the appropriate content-type header. The behavior i'm looking for is this:
If the browser is able to render content of the given content-type then it ...
10
votes
3answers
13k views
Uses of content-disposition in an HTTP response header
I have found the following asp.net code to be very useful when serving files from a database:
Response.AppendHeader("content-disposition", "attachment; filename=" + fileName);
This lets the user ...
8
votes
1answer
255 views
Special Characters in Content-Disposition filename
This thread is a duplicate of How to encode the filename parameter of Content-Disposition header in HTTP?
But since this question was asked a long time ago and there is still no satisfying answer (in ...
6
votes
5answers
9k views
IE 7 bug? - prompt save / open when downloading file - c# asp.net 3.5
I have an aspx page with linkbuttons that fire javascript to pop open a new aspx page to stream files to the browser for downloading by users.
When developing and unit testing on XP SP3, IE 7 and ...
6
votes
3answers
10k views
C# ASP.NET 3.5 content-disposition file download problems
I have a sql database that stores some documents.
A user can sign into the application, and view a list of their documents.
When clicking a linkbutton download in a gridview of their docs, I get the ...
5
votes
5answers
539 views
How to change filename prompt text browser Save As dialog?
In my web page (rendered by Rails), I'd like to let the user right-click on a photo to bring up the browser's Save As dialog, to let the user save the photo to their hard drive.
However, the photos ...
4
votes
2answers
908 views
IE and Content-disposition inline vs. extension-token
Preamble
So IE does Mime-Type sniffing. That part's old news.
Suggestions of how to combat it tend to be along the lines of 'supply a content-type IE trusts' (i.e. anything that isn't text/plain or ...
4
votes
5answers
1k views
Download textarea contents as a file using only Javascript (no server-side)
I am being asked to make a "download" button that downloads the contents of a textarea on the same page as a file, with the browser's "Save As..." dialog showing up. Copy/paste would do the job just ...
3
votes
2answers
298 views
How to set content-disposition to inline for static file(s) in java Google App Engine
I know how to set content-disposition header for dynamic requests, but how to set it for static files.
Problem is that GAE java production version automatically sets to attachment content-disposition ...
3
votes
1answer
419 views
Parsing content-disposion header's filename in multipart/from-data
Hello According to RFC, in multipart/form-data content-disposition header
filename field receives as parameter HTTP quoted string - string between quites where
character '\' can escape any other ascii ...
3
votes
6answers
2k views
How to return a file via Web Service
I am working on a Web Service where the user would input parameters and have the option of have the data returned in various file formats (xml, html (on screen), csv, etc.).
If the server generates ...
3
votes
2answers
5k views
files served with content-disposition: inline still sometimes prompt for download
My subject line says most of what I'm asking. I've got a web site that outputs reports in various formats (HTML, CSV, TSV, Excel, etc). Whenever possible, I'd like these files to be shown in the ...
2
votes
3answers
57 views
PHP - Force File Download Script - Not working in IF statement
The bellow code is a page with an IF statement calling the downloadpage.
if ($currentpdt<$updatedpdt)
echo "updatedpdt is greater than currentpdt.";
else
echo "updatedpdt is not greater ...
2
votes
1answer
1k views
EXTJS Ajax request and Content-Disposition attachment
I want to get a watingmessage in extjs while loading a link. The response is a binarycode, which I want to downlad. The link is for example "test.php".
function loadurl(link){
...
2
votes
1answer
400 views
Content-Disposition Special Characters
I have encountered an issue when trying to serve files with spanish tildes, related to the Content-Disposition encoding.
The file name is "qué hacés ahora.docx"
So far, the ASP.NET MVC way of ...
2
votes
2answers
278 views
Force download of files on App Engine
How would I go about forcing the browser to download media files instead of attempting to stream them? These are static files in my application directory.
2
votes
3answers
1k views
Java webapp: adding a content-disposition header to force browsers “save as” behavior
Even though it's not part of HTTP 1.1/RFC2616 webapps that wish to force a resource to be downloaded (rather than displayed) in a browser can use the Content-Disposition header like this:
...
2
votes
8answers
3k views
Response.TransmitFile() with UNC share (ASP.NET)
In the comments of this page:
http://msdn.microsoft.com/en-us/library/12s31dhy%28v=VS.90%29.aspx
..it says that TransmitFile() cannot be used with UNC shares. As far as I can tell, this is the case; ...
1
vote
1answer
62 views
content-disposition header being sent twice…once by code the other unknown
I have an .aspx page where I'm manually setting headers to force a download of a pdf file. It works fine in IE, but in chrome and firefox 8.0, it's giving an error.
I finally tracked down the source ...
1
vote
1answer
264 views
How to serve S3 files from a Rails app?
I am trying to allow users to download a S3 file by left clicking a link. Normally, they would have to do it by right-clicking and save-as.
I looked into ...
1
vote
0answers
70 views
Link to download image instead of view image (CANT Change Content-Disposition Header)
I have a Django app and all the static content is handled through NGINX. I want to allow users to download a couple of static resources (photos) in their client by clicking on a link in the markup.
...
1
vote
1answer
97 views
php redirect + force download
I am creating a google-chrome application that will download songs from an octet stream, however due to JavaScript restrictions, I cannot create a "download" button. The user must right click and ...
1
vote
1answer
495 views
Download file / Save as in .Net not working
I've got a jquery lightbox based screen which I want to download a file when a link button is clicked, but the popup box allowing me to save is not appearing... The simple test code I've got below ...
1
vote
2answers
619 views
“Content-disposition”-like behavior with Javascript
I was wondering if it is possible to make browser behaving the same way as it does when sees "Content-disposition: attachment; filename=..." by using client-side javascript only? This implies the data ...
1
vote
3answers
537 views
Internet Explorer ignores Content-Disposition over HTTPS
I'm attaching a file to a http response using this header:
Content-Disposition: attachment; filename="example.doc"
It works perfectly unless I try to download the file over HTTPS using Internet ...
1
vote
0answers
277 views
How do you specify Content-Type Name and Content-Disposition Filename using Attachment and LinkedResource?
Emails generated using System.Net.Mail.Attachment and System.Net.Mail.LinkedResource contain MIME parts. The question is how to specify the Content-Type Name and Content-Disposition Filename values ...
1
vote
1answer
465 views
Forcing the inline rendering of a PDF document in Rails
I'm writing a service that generates PDF files from a set of XML files. The PDF is being correctly generated. However, everytime I click on the "view PDF" link, the browser asks the user to download ...
1
vote
1answer
352 views
j2me - Content-Disposition attachment; filename - how to get it?
I am trying to download an audio file served by Rails server with my j2me application.
Here is my piece of code:
try {
connection = (HttpConnection) ...
1
vote
1answer
457 views
Setting Content-Disposition for AWS S3 with Rails?
I am using Amazon S3 to store and serve user content for user accounts. I need the ability to serve the files either inline (sometimes urls for images will be in blog posts, etc) or as a download. By ...
1
vote
3answers
788 views
ASP.NET/Content-Disposition header + inline: saving file with correct name [closed]
I've seen there's a general browser issue when we try to set the Content-Disposition header like "inline;filename=file1.doc": the browser shows the file, but when we try to save the file, the filename ...
1
vote
1answer
280 views
.NET image handler stripping filetype on download
I have created an ashx handler to render image thumbnails from images in a mysql database. If a file name is passed through querystring, the content disposition filename is set (when user clicks ...
1
vote
2answers
100 views
Trouble creating csv for download
Using this lovely example I am getting some funky results. What I have is:
Protected Sub btnCSV_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCSV.Click
Response.Clear()
...
1
vote
2answers
2k views
docx file doesnt open in browser with content disposition inline in IE 8
I want to open docx file in IE from asp.net. The IIS has mime type correctly mapped. I can open pdf fine but docx will always prompt me to download like content-disposition='attachment'. Is there any ...
1
vote
1answer
2k views
Content-disposition:inline header won't show images inline?
I'm trying to show an image inline on a page. It is being served by a codeigniter controller.
class Asset extends MY_Controller {
function index( $folder, $file ) {
$asset = ...
1
vote
3answers
655 views
How to rewrite and set headers at the same time in Apache
I have a directory of images that alternately be viewed directly in the browser, and other times downloaded.
So, say I have a file /gallery/gal_4254.jpg.
I want to make /download/gal_4254.jpg ...
1
vote
2answers
547 views
View contents of file with Content-disposition: attachment using socket
I want to parse the contents of a dynamic .csv file. However, this code (obviously with duff file names, etc.):
$socket = fsockopen("www.example.com", 443);
fwrite($socket, "GET ...
1
vote
1answer
789 views
Resetting wait cursor in browser with Content-Disposition:attachment
The following code works nicely:
<script type="text/javascript">
var prm = Sys.WebForms.PageRequestManager.getInstance();
prm.add_initializeRequest(InitializeRequest);
...
1
vote
3answers
2k views
PHP - How to set full directory path in Content-Disposition?
I am passing a filename to a download page.
ie somefile.xls
The download page adds back in the full directory path onto the filename.
ie c:\temp\somefile.xls
The problem is that now setting ...
1
vote
3answers
873 views
Semicolon in Content-Disposition filename
I have a problem trying to download filenames with a semicolon in them in IE8.
Response.AddHeader("Content-Disposition", "attachment; filename=\"" + attachment.File.FileName + "\"");
Assuming that ...
1
vote
1answer
120 views
What are the security considerations of using the content-dispositon HTTP header?
In response to this, what are the security considerations when using the content-disposition HTTP header?
1
vote
3answers
341 views
Download contents of the PHP generated page from another PHP script
I have a PHP script on a server that generates the XML data on the fly, say with Content-Disposition:attachment or with simple echo, doesn't matter. I'll name this file ...
0
votes
1answer
20 views
How to determine download file name when there's no content-disposition
Take a look at this URL:
http://download.mozilla.org/?product=firefox-9.0.1&os=win&lang=nl
It is the direct link to download the latest version of Firefox. When you execute the URL in ...
0
votes
1answer
8 views
Prompt user to save on download from Dropbox
I want to have a link to download a file from Dropbox that prompts the user instead of displaying the file in the browser. This probably requires setting a content-disposition header to 'attachment'.
...
0
votes
1answer
46 views
How to implement Content-Disposition: attachment?
I am trying to make it so that mp3's on my site are downloaded by left clicking instead of having to right click and save as, So in order to do that, I have to set the Content-Disposition: attachment. ...
0
votes
1answer
26 views
Use content-disposition attachment in RemoteServiceServlet
I have an application that successfully receives an input string from the user, processes it on server-side, and displays the result on a webpage. I had implemented it as a RemoteServiceServlet, ...
0
votes
3answers
72 views
Why is my openfile.php not working properly in Safari or IE?
I have a very simple file called openfile.php that sets a content-disposition and forces a browser to download a specified file.
It works fine in FF, but in Safari, it downloads a strange .xhtml file ...
0
votes
1answer
126 views
How to avoid duplicate content-disposition headers with MVC3 FileContentResult?
We have some files stored in sql database. On an ASP.NET MVC3 form, we display 2 links:
View this file | Download this file
These links go to these corresponding action methods. The download works ...
0
votes
1answer
30 views
add a response header to tell a browser to use a specific launch application
I want to tell a browser to in a header of the server response, to launch a specific application to open a specific file.
In particular if I want to view a pdf file (which is present on my server) on ...
0
votes
0answers
39 views
Create file from PHP script that opens in Excel by default and does not produce file-type errors
So I have a script that puts a table into a spreadsheet format, using the XML-Spreadsheet disposition. I am calling the documents certificatex.xlt with
1 header('Content-type: ...
0
votes
1answer
14 views
Looking for a strategy to implement publish capability via email
Imagine you want to provide the ability to publish news on your website sending an email to a given address (like for example publish.news@domain.com).
1) The base strategy is: look for something ...