Briefly, I'm using the Chris Hammond Template. In the edit view, I can't get the ID of the to register correctly. I keep getting the error.
Get run through
Settings for my solution.
Under solution properties, my output folder is set to ..\web\local.dnn.com\bin\
Along with all my references point to the bin folder in my DNN site C:\web\local.dnn.com\bin\
In Edit HTML
<%@ Register TagPrefix="dnn" TagName="UrlControl" Src="~/controls/UrlControl.ascx" %>
<dnn:UrlControl ID="firstLinkEditorDM" CssClass="form-label push-right" runat="server" ShowFiles="true" ShowNewWindow="false" ShowUrls="true" ShowLog="false" ShowTrack="false" ShowUpLoad="false" />
<asp:TextBox ID="firstLinkTextEditorDM" CssClass="form-control d-block" runat="server" />
Code Behind in my First statement my id always shows a red underline with the error "The name "firstLinkEditorDM" does not exist in the current context."
Same with the ID firstLinkTextEditorDM
I've checked my refrences and not sure why I'm getting the error
using System;
using System.Drawing;
using System.Net;
using System.Web;
using System.Web.UI;
using DotNetNuke;
using DotNetNuke.Entities.Modules;
using DotNetNuke.Services.Exceptions;
using DotNetNuke.Services.FileSystem;
using Telerik.Web.UI;
public partial class Edit : AssociationProductListBannerModuleBase
{
protected void Page_Load(object sender, EventArgs e)
try
if (!Page.IsPostBack)
var modules = new ModuleController();
// First Link
if (Settings.Contains("_firstLinkTextDM"))
firstLinkTextEditorDM.Text = Settings["_firstLinkTextDM"].ToString();
if (Settings.Contains("_firstUrlControlDM "))
firstLinkEditorDM.Url = Settings["_firstUrlControlDM "].ToString();
}
catch (Exception exc) //Module failed to load
Exceptions.ProcessModuleLoadException(this, exc);
These Forums are for the discussion of the open source CMS DNN platform and ecosystem.
For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:
Awesome! Simply post in the forums using the link below and we'll get you started.