I read several post, but I can't find the way to correctly use french/english string in my template without crashing the templete with the # caracter.
see this part of a template:
<div class="Stats"> <span class="LikeCount">#=Html.Kendo().TemplateEncode(@Resources.PortailGES.Aime)#<span id="LikeCount_#: Id #">#: LikeCount #</span></span> <span class="DislikeCount">@*@Resources.PortailGES.AimePas*@ <span id="DislikeCount_#: Id #">#: DislikeCount #</span></span></div>
I try with #=Html.Kendo().TemplateEncode(@Resources.PortailGES.Aime)# but that not work
The string Ressource.PortailGES.Aime contain "J'aime" in french rendered in the template like: J'aime the crash the template.
Thanks for your help.
