Ok this is my first post and I am new to dnn.
I am trying to create a custom module in Visual Studio 2013. I am using Christoc template to create the module. My questions is how do you use the dnn built in controls?
I followed a tutorial which showed how to use the label like so.
<%@ Register TagPrefix="dnn" TagName="label" Src="~/controls/LabelControl.ascx" %>
<dnn:label ID="lblNewUserName" runat="server" Text="Username" HelpText="Enter a username for the account"/>
But now I wish to try and use something like DnnDatePicker. How do I reference this control?