I have some controls I'm working on and trying to get the text to show up for my label control, but having no luck. Can anyone think of what I'm missing?
I have the following code at the very top of the HTML page-
<%@ Register TagPrefix="dnn" TagName="Label" Src="~/controls/LabelControl.ascx" %>
<%@ Register TagPrefix="Portal" TagName="Audit" Src="~/controls/ModuleAuditControl.ascx" %>
I have the following also in HTML:
<dnn:label id="plGradingPeriod" runat="server" suffix=":"></dnn:label>
I have a resource file with the exact same name as my control file. Here is my definition of plGradingPeriod in my resource file which is located in App_LocalResources, as usual.
Name = plGradingPeriod.Text Value= Select grading period
Name= plGradingPeriod.Help Value= Select the grading period for this report
My text does not show up, nor does the tip. I have other controls I've built and successfully used this control and am stumped. Can anyone think of what I've left out? Thanks in advance for any help.
Patricia