views:

38

answers:

1

Is it possible to read the Global Navigation of all the sub sites and display the items (links or category) from a Web Part that should be in a master page?

Don't forget that the global navigation can be edited in the settings, so I can't just loop on pages and sub sites. :(

+1  A: 

You can read the navigation using : SPNavigationNodeCollection navNodes = web.Navigation.QuickLaunch;

tinky05