My application contains multiple menus and i just to use one sitemap to power all menus.
web.sitemap example...
<siteMapNode url="Default.aspx" title="Home" >
<siteMapNode title="Products Menu" >
<siteMapNode
url="Products/FirstProduct.aspx"
title="First Product"
description="The description of the First Product" />
<siteMapNode
url="Products/SecondProduct.aspx"
title="Second Product"
description="The description of the Second Product" />
</siteMapNode>
<siteMapNode title="Service Menu" >
<siteMapNode
url="Services/FirstService.aspx"
title="First Service"
description="The description of the First Service" />
<siteMapNode
url="Services/SecondService.aspx"
title="Second Service"
description="The description of the Second Service" />
</siteMapNode>
</siteMapNode>
How do i generate two different menus from it? Product and Service menu. I know i can set StartingNodeUrl using the SiteMapDataSource but the parent menu nodes do not have urls. Any ideas?