I have a website where I let users download mp3 files. The code snippet (partial) is as follows:
Response.Clear();
Response.AppendHeader("Content-Disposition:", "attachment; filename=mike.mp3");
Response.AppendHeader("Content-Length", "1000");
Response.ContentType = "audio/mpeg3";
A customer complained that he is unable to download this file on Safari on Mac 10.4.11. (It simply renders the mp3 file on the page) So, I downloaded Safari for Windows and am unable to recreate the issue. So, I guess there's a difference between Safari for Windows and Safari for Mac?
I don't have a Mac machine. How do I troubleshoot this issue?