Thats 2 ways i found for DNN Module Localization,
first is using ResourceKey without involve Code Behind in ACSX, example code
<asp:Label Id=”lblPageTitle” runat=”server” ResourceKey=”lblPageTitle”/>
Another way is using Code Behind, sample code is
ASCX page,
<asp:Label Id=”lblPageTitle” runat=”server”/>
Code Behind,
lblPageTitle.Text =
Localization.GetString(“lblPageTitle”, this.LocalResourceFile);