I need to send the CSV file in HTTP response. How can i set the output response as CSV format
Response.ContentType = "application/CSV";
This is not working.
|
5
|
|
|
|
|
|
Using You should also consider adding a
The above will cause a file "Save as" dialog to appear which may be what you intend. |
||||||||
|
|
|
text/csv, according to http://en.wikipedia.org/wiki/Comma-separated_values |
||
|
|
|
Over the years I've been honing a perfect set of headers for this that work brilliantly in all browsers that I know of
|
||
|
|
|
|
Try one of these other mime-types (from here: http://filext.com/file-extension/CSV )
Also, the mime-type might be case sensitive... |
||
|
|
|
|
Setting the content type and the content disposition as described above produces wildly varying results with different browsers: IE8: SaveAs dialog as desired, and Excel as the default app. 100% good. Firefox: SaveAs dialog does show up, but Firefox has no idea it is a spreadsheet. Suggests opening it with Visual Studio! 50% good Chrome: the hints are fully ignored. The CSV data is shown in the browser. 0% good. Of course in all of these cases I'm referring to the browsers as they come out of they box, with no customization of the mime/application mappings. |
||
|
|
|
Just Use like that
|
|||
|
|
|
MIME type of the CSV is text/csv according to RFC 4180. |
||
|
|