I've got aform with a continue link that is send by email. In this link I've added some sensitive encrypted data that is encoded by Base64
. The value contains a slash which is encoded into %2F
(with a Server.UrlEncode
). When I send the link to a Windows Live address I see that Outlook.com decodes the %2F
back into a forward slash. How can I prevent this?
I'm sending:
<a href="http://www.tempuri.com/key=RVQ%2FcGhvbmVfaG9tZSE%3D">Continue</a>
But I'm seeing:
<a href="http://www.tempuri.com/key=RVQ/cGhvbmVfaG9tZSE=%3D">Continue</a>
It can be reproduced by sending the link http://www.tempuri.com/key=RVQ%2FcGhvbmVfaG9tZSE%3D
from any mail client to the Windows Live address.