I need to put a link with this href="file://attachments/aaaa_#_aaaa.msg"
Obviously in that way is not working because the hash character #
is used for anchors.
So I try to change this to: href="file://attachments/aaaa_%23_aaaa.msg"
but when I open the url in the IE, the browser is trying to open this: href="file://attachments/aaaa_%2523_aaaa.msg"
IE is encoding the %
character to %25
How can I put the file name in the URL to encode and read the hash character #
in all the browsers to download the file?
I can't change the file name to remove this character, so I need a way to deal with this problem.