I go through the DNN Development tutorial 17 for Edit Control.
I try to create label using dnn:label
But when I start typing:
<dnn:
The "label" text is not coming up and the page will not build.
Here is the code from the Edit.ascx
<%@ControlLanguage="C#"AutoEventWireup="true"CodeBehind="Edit.ascx.cs"Inherits="Christoc.Modules.DNNTaskManager.Edit"%>
<%@RegisterTagPrefix="dnn"TagName="label"Src="~/controls/LabelControl.ascx"%>
<dnn:labelID="lblName"runat="server"Text="Name"HelpText="Enter the name of your task"/>
<asp:TextBoxID="txtName"runat="server"/>
Can anyone help me in right direction?
Geir