Hi,
I am working on an ASP.NET project where we are updating all of our websites to support Unicode values. In one place, we are allowing users to enter their email address as Unicode. I use the following code snippet to display the "mailto" address hyperlink:
Response.Write("<a href='mailto:" + Server.UrlEncode(email.EmailAddress) + "'>" + email.EmailAddress + "</a>");
When I click on this link, it opens Outlook, but the email address displays as garbage text. Any ideas on how to resolve this issue?
From what I have heard, currently, email addresses only support ANSII characters, but Unicode characters are coming; That is why we are taking this step.
Thanks for your time.