mailto 中的英镑符号问题:链接

发布于 2024-12-09 18:07:26 字数 748 浏览 0 评论 0 原文

在我的 ASP.NET MVC 应用程序中,我创建了一个 mailto 链接,其中主题和正文包含英镑 £ 符号。

这似乎在大多数情况下都有效,但一些使用 Outlook 2003/Chrome 的用户报告说,当单击链接时,英镑符号显示为 â£,在我看来,它正在解释 UTF-8字符串为 ascii/windows-1252/whatever 等。

我不知道应该如何编码。目前我正在使用以下内容:

public static HtmlString EncodeMailTo(this HtmlHelper hlp, string val)
{
  var encoded = HttpUtility.UrlEncode(val).Replace("+", "%20");
  return new HtmlString(encoded);
}

并在视图中:

<a href="mailto:?subject=@(Html.EncodeMailTo(Model.Offer.Heading))&body=@(Html.EncodeMailTo(Model.Offer.Requirement))" >
    Link
</a>

有没有一种方法可以在 UrlEncoding 之前将其转换为不同的编码(例如 Windows-1252)?我尝试转换字符串的编码,然后将其和使用的编码传递到 UrlEncode 但得到?而不是 £ 符号。

In my ASP.NET MVC application I am creating a mailto link where the subject and body contain a pound £ symbol.

This appears to work in most cases but some users with Outlook 2003/Chrome is reporting that when clicking the link the pound symbol is showing as £, which looks to me like it is interpreting a UTF-8 string as ascii/windows-1252/whatever etc.

I'm not sure how I should encode this. Currently I am using the following:

public static HtmlString EncodeMailTo(this HtmlHelper hlp, string val)
{
  var encoded = HttpUtility.UrlEncode(val).Replace("+", "%20");
  return new HtmlString(encoded);
}

and in the view:

<a href="mailto:?subject=@(Html.EncodeMailTo(Model.Offer.Heading))&body=@(Html.EncodeMailTo(Model.Offer.Requirement))" >
    Link
</a>

Is there a way that I can convert this to a different encoding (e.g. Windows-1252) before UrlEncoding it? I've tried converting the encoding of the string and then passing this and the encoding used into UrlEncode but get ? instead of the £ symbols then.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

清晨说晚安 2024-12-16 18:07:26

您不会找到任何一个答案可以解决所有浏览器/电子邮件客户端的这一问题。按照 的建议使用 £在这种情况下,马特·费洛斯可能会为某些客户提供服务。但是,您会遇到没有命名 html 实体的其他字符或无法正确处理实体的浏览器/电子邮件客户端的问题。

更烦人的是,如果您针对一种浏览器/电子邮件设置(例如使用 Windows-1252)更正它,则可能会破坏使用 UTF-8 的客户端。

最后,唯一真正的解决方案是浏览器和电子邮件客户端升级到使用 UTF-8,请参阅 避免国际邮件陷入漩涡

You're not going to find any one answer that solves this problem for all browsers/email clients. Using the £ as suggested by Matt Fellows may work on some clients in this instance. However, you'll run in to problems with other characters that do not have a named html entity, or browsers/email clients that do not handle entities correctly.

Even more annoying is if you correct it for one browser/email set up (e.g. using Windows-1252) it might then break clients using UTF-8.

In the end, the only real solution is for browsers and email clients to upgrade to using UTF-8, see Avoiding an international mailto maelstrom.

笑忘罢 2024-12-16 18:07:26

尝试故意编码为 £

public static HtmlString EncodeMailTo(this HtmlHelper hlp, string val)
{
  var encoded = HttpUtility.UrlEncode(val).Replace("+", "%20").Replace("%C2%A3", "£");

  return new HtmlString(encoded);
}

£ 符号不是基本 ASCII 字符集的一部分。所以 ASCII 不能正确解释它。

Try deliberately encoding as £

public static HtmlString EncodeMailTo(this HtmlHelper hlp, string val)
{
  var encoded = HttpUtility.UrlEncode(val).Replace("+", "%20").Replace("%C2%A3", "£");

  return new HtmlString(encoded);
}

The £ symbol is not part of the basic ASCII character set. So ASCII will not interpret it correctly.

怀里藏娇 2024-12-16 18:07:26

增强 Matt Fellow 的答案+1

var encoded = HttpUtility.UrlEncode(HttpUtility.HtmlEncode(val));

Enhancement on Matt Fellow's answer +1

var encoded = HttpUtility.UrlEncode(HttpUtility.HtmlEncode(val));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文