Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个名为 SpeakerName 的表字段。当我在表格中显示它时,它会正确显示名称(例如 Efraín),但是当将其传递给文本框时,它会显示:Efraín 我认为这是一个 UTF 8 和 ASCII 问题,如何将文本框设置为正确显示文本?
你可以调整
var result = Server.HtmlEncode(yourText);
我使用了 HttpUtility.HtmlDecode(mytext) 并且成功了!我发现这个特殊(或外国)字符非常有帮助!谢谢!