views:

54

answers:

2

I have a footer that I am adding to a masterpage. Within this footer, if constructs menus based on the Current Node of the sitemap, however the sitemap is coming back as null. Does anyone know how to fix this issue.

Thank you

A: 

Try using Page.Master.FindControl()

this.Page.Master.FindControl("SiteMapID1");
KMan
A: 

I figured this out last night. I just grabbed the SiteMap root node from the Master Page.

mattgcon