vote up 0 vote down star

How can I escape localized string encoding:

<%= Html.Encode("ÆØÅ") %> from rendering  &#198;&#216;&#197;

is there another way to encode localized strings?

flag

1 Answer

vote up 2 vote down check

That's being encoded twice - are you using this in a HtmlHelper call?

// this will display&#198;&#216;&#197; 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 />
link|flag
Oh! Yes I'm using it in like this <%= Html.ActionLink(Html.Encode("ÆØÅ"), "Details")%> But if I drop the HTML.Encoding like in the last example, then html will still be rendered – Cshift3iLike Apr 25 at 13:27
1  
Hmm - this works fine for me: <%= Html.ActionLink("ÆØÅ", "Details")%> Not sure why it's not working for you, thats odd.. – Steve Willcock Apr 25 at 13:29
Sorry, it works fine! I just Forgot to save the document :D Thanks for help! – Cshift3iLike Apr 25 at 13:36
Hehe, great, glad you got it working :) – Steve Willcock Apr 25 at 14:55
BTW: there's bug in MVC View file template. It's saved without BOM, so if you plan to use it as UTF-8 then I recommend to save as UTF-8 with BOM. Otherwise it will use system default encoding. – tomo Jul 4 at 23:31

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.