Hi
I have the same problem and have read through this thread and tried everything to no avail. I am using DNN 8.0.4.
My skin user control pulls in localisation text fine. This skin control displays two common child user controls which are used in several skin files. I am trying to add localisation to one of these child user controls.
The span placeholder tag is loading into the child control when browsing but the child control is not pulling in the localisation text from its resource file which is located in the App_LocalResources sub-folder.
Stripped down a little my main skin code is:
<%@ Control language="vb" AutoEventWireup="false" Explicit="True" Inherits="DotNetNuke.UI.Skins.Skin" CodeBehind="Blar.ascx.vb" %>
<%@ Register TagPrefix="dnn" TagName="LANGUAGE" Src="~/Admin/Skins/Language.ascx" %>
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Web.DDRMenu.TemplateEngine" Assembly="DotNetNuke.Web.DDRMenu" %>
<%@ Register TagPrefix="dnn" TagName="MENU" src="~/DesktopModules/DDRMenu/Menu.ascx" %>
<%@ Register TagPrefix="dnn" TagName="TEXT" Src="~/Admin/Skins/Text.ascx" %>
<%@ Register src="~/Portals/0/Skins/MySkin/ctrlContactUs.ascx" tagname="ctrlContactUs" tagprefix="cu1" %>
Child Control:
<%@ Control Language="VB" AutoEventWireup="false" CodeFile="ctrlContactUs.ascx.vb" Inherits="Portals_0_Skins_MySkin_ctrlContactUs" %>
<%@ Register TagPrefix="uc" TagName="CONTACTUS" Src="~/Admin/Skins/Text.ascx" %>
Child Resource in sub-folder App_LocalResources:
Blar blar.
+44 (0)1234 567890
I've been round in circles for a whole day on this but cannot get it to work. any help would be most appreciated.
Thanks in advance.