vote up 1 vote down star

When doing something like this:

Response.Clear();

Response.OutputStream.Write(buffer, 0, buffer.Length);
Response.ContentType = "audio/mpeg";
Response.Flush();

The downloaded file name is "Default.aspx". How can I change it to something like "a.mp3"?

flag

1 Answer

vote up 4 vote down check
var cd = new ContentDisposition 
{
    FileName = "file.mp3"
};
Response.AddHeader("Content-Disposition", cd.ToString());

ContentDisposition is a convenient class that allows you to set the Content-Disposition header in a friendly manner, without knowing the internals of the HTTP protocol. Of course you could always set the header manually if you prefer:

Response.AppendHeader("Content-Disposition", "attachment; filename=file.mp3");
link|flag
I would only add, if you're going for the manual way and the filename potentially contains spaces and you don't know the HTTP in detail, then you need to quote it: "attachment; filename=\"file with spaces.mp3\"". – BalusC Nov 7 at 19:42
+1. The ContentDisposition type is new to me, very nice. – AnthonyWJones Nov 7 at 19:53

Your Answer

Get an OpenID
or

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