在asp.net控件中设置编码

发布于 2024-11-09 03:39:13 字数 324 浏览 0 评论 0原文

我在 Web 配置文件中配置了编码,如下所示:

<globalization culture="en-US" uiCulture="en-US" fileEncoding="utf-8"
               requestEncoding="utf-8" responseEncoding="utf-8" />

一切正常,除了我在 .net 控件中使用特殊字符的情况。

用户控件中的 HTML 似乎没有采用默认编码。

另一个问题是没有可以在本地声明编码的 Page 指令。

我该如何解决这些问题?

I have configured encoding inside the web config file as follows:

<globalization culture="en-US" uiCulture="en-US" fileEncoding="utf-8"
               requestEncoding="utf-8" responseEncoding="utf-8" />

It is all working fine, except in a case where I use special characters inside .net control.

It seems that HTML from the user control does not pick up the default encoding.

Another problem is that there is no Page directive where I can declare encoding locally.

How do I resolve these issues?

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

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

发布评论

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

评论(1

离笑几人歌 2024-11-16 03:39:13

答案不是调整 webconfig 文件,而是使用正确的编码保存 .ascx 文件(例如使用编码 UTF-8 代码页 65001 保存)。

希望我能帮助别人解决这个问题。

The answer is not to adjust the webconfig file, but to save the .ascx file with proper encoding (Save with encoding UTF-8 codepage 65001 for example).

Hope I helped someone with this.

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