在asp.net控件中设置编码
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
答案不是调整 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.