I want to see if i can get a node to display for a directory instead of per page. Lets say i have the following layout.
Home
Books
- New
- Used
- On Order
Electronics
DVDs
Computers
Lets say i am in the Books section on the New page. I want my site map node to display (Home > Books) regardless of what page im on with in the Books directory.
I would like to do this without having to code a node for each page like such.
<sitemapnode title="Books" Url="~/Books/Default.aspx">
<sitemapnode title="Books" Url="~/Books/New.aspx"/>
<sitemapnode title="Books" Url="~/Books/Used.aspx"/>
<sitemapnode title="Books" Url="~/Books/OnOrder.aspx"/>
</sitemapnode>
Any ideas?