G
Guest
Our website allows users to download files. The site uses ASP to create send
the download using
Response.ContentType = "application/x-msdownload"
Response.AddHeader "Content-Disposition", "inline;filename=xxx.pdf"
response.AddHeader "Content-Length", ba.Length
The problem is that the filename, when prompted displays in IE6 as xxx%2Epdf
Users could just go in and replace the %2E with a "." but most users won't
know to do that.
Why does it replace the "." with "%2E"?
Is there any way to fix it?
the download using
Response.ContentType = "application/x-msdownload"
Response.AddHeader "Content-Disposition", "inline;filename=xxx.pdf"
response.AddHeader "Content-Length", ba.Length
The problem is that the filename, when prompted displays in IE6 as xxx%2Epdf
Users could just go in and replace the %2E with a "." but most users won't
know to do that.
Why does it replace the "." with "%2E"?
Is there any way to fix it?