DNN Forums

Ask questions about your website to get help learning DNN and help resolve issues.

URL Control not Registering Correctly in Module Template

Sort:
You are not authorized to post a reply.





New Around Here





    Briefly, I'm using the Chris Hammond Template. In the edit view, I can't get the ID of the <dnn:UrlControl> 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 <asp:TextBox>  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);

                }

            }

     

     

     

     

    You are not authorized to post a reply.

    These Forums are dedicated to the discussion of DNN Platform.

    For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

    1. If you have (suspected) security issues, please DO NOT post them in the forums but instead follow the official DNN security policy
    2. No Advertising. This includes the promotion of commercial and non-commercial products or services which are not directly related to DNN.
    3. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
    4. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
    5. No Flaming or Trolling.
    6. No Profanity, Racism, or Prejudice.
    7. Site Moderators have the final word on approving / removing a thread or post or comment.
    8. English language posting only, please.

    Would you like to help us?

    Awesome! Simply post in the forums using the link below and we'll get you started.

    Get Involved