Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have ASP.NET MVC 3 application having resource files in english and french. A text 'Sélectionner la pharmacie' is stored in a french resource file.

When the value is read from resource files with razor syntax, it shows 'S#233;lectionner la pharmacie' instead of 'Sélectionner la pharmacie'.

e.g.
@MyResources.Strings_Resources.lbl_SelectPharmacy

Is there a way I can make it show the french accent characters ?

share|improve this question

2 Answers

up vote 6 down vote accepted

I suspect that your text is already encoded and razor is trying to encode it again (it encodes all outputs)

Try with

@Html.Raw(MyResources.Strings_Resources.lbl_SelectPharmacy)
share|improve this answer

First check your master page, you have set UTF-8

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>


<system.web>
    <globalization enableclientbasedculture="true" uiculture="auto" culture="auto">

    <!-- Use above or below <globalization> line, based on your site -->

    <globalization fileEncoding="utf-8" requestEncoding="utf-8" responseEncoding="utf-8"/>
</system.web>

If you have set this already then try below setup:-

<asp:Label Text="<%$ Resources:Strings, MyGlobalResource %>" runat="server" />
<asp:Label Text="<%$ Resources:MyLocalResource %>" runat="server" />


<%= HttpContext.Current.GetLocalResourceString("~/YOURASPXPAGE", "MyLocalResource", CultureInfo.CurrentUICulture) %>

Refer this URL for more info:-

  1. ASP.NET MVC 3 Internationalization
  2. ASP.NET MVC - Localization Helpers
share|improve this answer
I don't think the problem is the charset since the character is showed encoded, not gârbl€d™ – Eduardo Molteni Nov 18 '11 at 12:34
Like Bettle Midler said, you are my hero! – Rubens Mariuzzo Dec 14 '12 at 15:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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