Outlook 无法接受我的 mailto 字符串中的法语重音字符?

发布于 2024-08-10 21:41:01 字数 743 浏览 4 评论 0原文

Outlook 在传递包含重音字符的 mailto 字符串时会导致一些问题。更改包含此字符串的整个网页的代码页可以解决此问题,但这会导致系统出现其他问题,因此我不想这样做。

像这样的字符串会返回很多垃圾字符:

"mailto:[email protected]?subject=Mon bâtiment / Départementé / Bureau n'est pas répertorié"

同时,这会切断“D”之后的字符,这

"mailto:[email protected]?subject=Mon bâtiment / Départementé / Bureau n'est pas répertorié"

会产生什么结果?难道就没有办法让这个工作成功吗?我在加拿大,所以一些区域问题可能会在这里生效?

Outlook is causing some problems when being passed a mailto string with accented characters in it. Changing the codepage for my entire webpage that has this string on it solves this problem, but that causes other problems in the system, so I would not like to do that.

A string like such returns a lot of garbage characters:

"mailto:[email protected]?subject=Mon bâtiment / Départementé / Bureau n'est pas répertorié"

Meanwhile, this cuts off the character after the "D"

"mailto:[email protected]?subject=Mon bâtiment / Départementé / Bureau n'est pas répertorié"

What gives? Is there no way to make this work? I am in Canada, so some regional issues might be taking effect here?

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

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

发布评论

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

评论(2

浅紫色的梦幻 2024-08-17 21:41:01

也许你可以尝试这个生成器

基本上,您需要使用页面编码中字符的十六进制值,前面带有百分号。对于 UTF-8,您的 â%C3%A2

Maybe you can try this generator.

Basically, you need to use the hexadecimal value of the character in the page's encoding preceded by a percent sign. For UTF-8, your â is %C3%A2.

2024-08-17 21:41:01

请参阅下面的链接,您将找到问题的解决方案,

请尝试一下
C# 是否有与 JavaScript 的encodeURIComponent() 等效的函数?

See the below link you will find the solution for your problem

try it
Does C# have an equivalent to JavaScript's encodeURIComponent()?

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