I have in my ASP.NET Web Forms Application resx file localized in App_LocalResources\fr.aspx.resx with key value: hello_world.
Now I want to use it on my ASPxLabel on class Page.aspx, so I simply:
<dx:ASPxLabel ID="0" runat="server" Text="<%$ Resources:fr, hello_world %>"></dx:ASPxLabel>
but I have error: Parser Error Message: The resource object with key 'msg' was not found.
I am sure that fr.aspx.resx is publicated, but still got Parser Error. What I am doing wrong?