Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 4 of 4

Thread: links in distributor section disappear

  1. #1
    mikemike1 is offline Junior Member
    Join Date
    Jun 2010
    Posts
    25

    Default links in distributor section disappear

    I am having an issue in our site, where links in our menu in the distributor pages are disappearing. In creating Distributor pages, the links appear correctly within the left menu on our site. Then, if I select one of the distributor links, then all links in that section disappear when the new page loads. Can anyone suggest a fix?

  2. #2
    ASPAlfred is offline Senior Member
    Join Date
    Nov 2007
    Posts
    2,244

    Default

    Sounds like you just need to enable IE's compatibility mode. Does this happening to any other browsers?

  3. #3
    mikemike1 is offline Junior Member
    Join Date
    Jun 2010
    Posts
    25

    Default

    It does happen in every browser.

    Starting at any page after our landing page, we have used the 'distributor' entity to add a second navigation section to our template.

    In navigating around the site, the links within the Information (Distributor) menu remain intact as expected. However, if any of the links within that menu are visited, then all links within that menu disappear.

    Anyone else having this issue or have ideas for a fix?

  4. #4
    mikemike1 is offline Junior Member
    Join Date
    Jun 2010
    Posts
    25

    Default

    The code isn't my strong suit, but in digging around through the files, could the final lines in showdistributor.aspx be what's causing the issue?

    protected override string OverrideTemplate()
    {
    String HT = "template";

    if (AppLogic.AppConfigBool("TemplateSwitching.Enabled ") && AppLogic.ProductIsMLExpress() == false)
    {
    HT = AppLogic.GetCurrentEntityTemplateName(EntityDefini tions.readonly_DistributorEntitySpecs.m_EntityName );
    return HT;
    }

    if (base.IsMobile)
    {
    HT = "mobile_" + HT;
    }

    return HT;
    }

    public override bool IsEntityPage
    {
    get
    {
    return true;
    }
    }

    public override string EntityType
    {
    get
    {
    return "Distributor";
    }
    }

    public override int PageID
    {
    get
    {
    return m_EP.GetActiveEntityID;
    }
    }