I placed the resource keys in SharedResources.resx file (placed under Resources folder) but when i use a resource string using ResourceKey="anyresourcekey", no text is shown at the place where i used resource key. e.g,
<dnn:labelcontrol id="lblLanguages" runat="server" ResourceKey="lblLanguages.Text" >
'lblLanguages.Text' is resource key inside the resource file. I also tried to use following syntax but it doesn't worked (It works fine in standard asp.net application)
<asp:Literal ID="Literal1" runat="server" Text="<%=Resources: MyResourceFile, lblLanguages.Text%>" />
The only thing that works is when resource file is placed in association with control in App_LocalResources folder by following syntax (which is not needed in my scenario). for example
<asp:TextBox ID="txtRedirectURL" runat="server" CssClass="abc" meta:resourcekey="txtPhoneNumberResource1" MaxLength="255"></asp:TextBox>
It would be nice if you list down all the steps in detail including how to use the resource key. I may be missing some step. Please note that our application is Module based.