vote up 0 vote down star
1

The following headers work on IE but not on FF

<%@ Page Language="C#" ContentType="text/csv" Inherits="System.Web.Mvc.ViewPage"%>
<% Response.AddHeader("Content-Disposition", "filename=report.csv;attachment"); %>

In FF the suggested name in FF appears as "report" without the extension.

flag

4 Answers

vote up 1 vote down check

I am currently using code that looks like this:

response.AddHeader("Content-Disposition", "attachment; filename=\"data.csv\"");

In my daily work - and that works just fine. Also are you sure this is not your OS or anything that has the "Hide extensions for known file types"-option enabled? (I know Windows have this option and it drives me crazy)

link|flag
Why people voted up only the older member? – Jader Dias Jul 20 at 18:47
Maybe because he linked the documentation – Jader Dias Jul 20 at 18:47
Possibly, idk... I think the solution is to use the quotes (being escaped) but I honestly don't know - I posted this as I knew it worked for me, I have no link to documentation or anything as it is code I created months and months ago and have used ever since without any issues. – kastermester Jul 20 at 20:10
vote up 4 vote down

filename is just an parameter of Content-Dispostion. So you have to swap both:

<% Response.AddHeader("Content-Disposition", "attachment;filename=report.csv"); %>
link|flag
vote up 0 vote down

try "attachment; filename=\"report.csv\"" (i.e. with quoted filename)

link|flag
vote up 0 vote down

This question about CSV generation helped me when I needed to implement CSV generation and download: How do I best generate a CSV (comma-delimited text file) for download with ASP.NET?

link|flag

Your Answer

Get an OpenID
or

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