Reputation: 6325
I have got an asp file with the following header Response.ContentType = "application/vnd.ms-excel" ,it displays the file in an excel format.This works in IE and firefox but not in safari. Any ideas why?
Upvotes: 1
Views: 14242
Reputation: 4361
Well, you can try forcing it like so:
Content-type: application/force-download
Content-disposition: attachment; filename="somefile.txt"
Please say if it works for you. Hope it helps.
Upvotes: 4