Response.ContentType = “application/vnd.ms-excel”

2019-06-02 22:50发布

问题:

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?

回答1:

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.