Don't miss out Virtual Happy Hour this Friday (April 26).

Try our conversational search powered by Generative AI!

MenuList not wokring in 4.61

Vote:
 

Hi.

I'm trying to figure out why my menu isn't showing.

 

The following code works:

<EPiServer:MenuList runat="server" id="MenuListControl" PageLink="2082">
    <ItemTemplate>
    </ItemTemplate>
</EPiServer:MenuList>

 This does not work:
<EPiServer:MenuList runat="server" id="MenuListControl" PageLink="<%#menuRoot%>">
    <ItemTemplate>
    </ItemTemplate>
</EPiServer:MenuList>

And my code behind looks like this:

protected PageReference MenuRoot
{
    get
    {
        return Configuration.StartPage;
    }
}

and I am databinding the menuList. What's wrong??

 

#31372
Jul 23, 2009 16:03
Vote:
 

Hi, when doing like that you need to databind the menulist from code behind.

In pageLoad or something similiar just

MenuListControl.DataBind();

#31431
Jul 29, 2009 9:57
* You are NOT allowed to include any hyperlinks in the post because your account hasn't associated to your company. User profile should be updated.