I have an Asp.Net MVC project where I use resource, but I'm having problems with accenting other special characters.
Home
Example:
I have the following Resource:
Name | Value MSG_SESSAO_EXPIRADA | *Sessão expirada!
In my View I have:
<script type="text/javascript" charset="utf-8">
alert('@Resources.MSG_SESSAO_EXPIRADA');
</script>
Obtained is:
Sessão expirada!
That is, it can not display ã
, but does the conversion.
Home
Could someone help me?