如何逃避本地化字符串编码:
<%= Html.Encode("ÆØÅ") %> from rendering ÆØÅ
还有另一种编码本地化字符串的方法吗?
答案 0 :(得分:2)
这是两次编码 - 你在HtmlHelper调用中使用它吗?
// this will displayÆØÅ as Html.TextBox encodes the
// value passed to it so it's encoded twice in this line
<%=Html.TextBox("sdfsdf", Html.Encode("ÆØÅ"))%><br />
// this will display ÆØÅ
<%= Html.Encode("ÆØÅ") %><br />
// As will this
<%=Html.TextBox("sdfsdf", "ÆØÅ")%><br />