I'm trying to implement a footer menu but the problem I'm facing is the left menu doesn't render when a page is selected from the footer menu. The apparent cause is that the left menu control is placed on the page before the footer menu (when I place the footer menu first it works fine). Obviously as it's a footer I want it to be the last thing on the page so I don't have the option of putting it before the left menu in teh code.
The code I use to bind it is
private void Page_Init(object sender, System.EventArgs e){
if(FooterMenu != null && LeftMenu != null){
LeftMenu.MenuListControl = FooterMenu.MenuListControl;
}
}
I've tried putting this code in different page events to no avail. Anyone any ideas on how I can accomplish this?
private void Page_Init(object sender, System.EventArgs e){ if(FooterMenu != null && LeftMenu != null){ LeftMenu.MenuListControl = FooterMenu.MenuListControl; } }
I've tried putting this code in different page events to no avail. Anyone any ideas on how I can accomplish this?