Posted on: 7/30/2012 9:16:12 PM | Views : 1083

I'm trying to add multiple site maps. I have a totoal of three sitemaps: web.site.sitemap, web.services.sitemap and web.solutions.sitemap.
I have a masterpage setup for the Services area of my site. What I want to do is add the menu control into the services page and its datasource to get the services sitemap. Then create another masterpage for the solutions section with it's menu based on the web.solutions.sitemap. In either Services or solution page I can't get the right sitemap to display. Any help here. Thanks
I added the sitemap provider in my web config like this:
<siteMap enabled="true" defaultProvider="DefaultSiteMapProvider"> <providers> <clear /> <add name="DefaultSiteMapProvider" type="System.Web.XmlSiteMapProvider" sitemapfile="web.site.sitemap" /> <add name="servicesProvider" type="System.Web.XmlSiteMapProvider" siteMapFile="Web.services.sitemap" /> < ...

Go to the complete details ...