I have the following sitemap defined
<siteMapNode url="~/Default.aspx" title="Home" description="">
<siteMapNode url="~/Store/Default.aspx" title="Store" description="">
<siteMapNode url="~/Store/ShoppingCart.aspx" title="Shopping Cart" description="" />
</siteMapNode>
<siteMapNode url="~/About.aspx" title="About" description="" />
<siteMapNode url="~/Contact.aspx" title="Contact" description="" />
<siteMapNode url="~/Admin.aspx" title="Admin" description="" />
<siteMapNode url="~/Test.aspx" title="Test" description="" />
</siteMapNode>
On one menu I want everthing up to (but not including) test displayed. On another menu I want everything from test on displayed. Documentation and config options state that this is quite possible but I can't seem to get it to work! Any help would be great!
<siteMapNode url="~/Default.aspx" title="Home" description="">
<siteMapNode url="~/Store/Default.aspx" title="Store" description="">
<siteMapNode url="~/Store/ShoppingCart.aspx" title="Shopping Cart" description="" />
</siteMapNode>
<siteMapNode url="~/About.aspx" title="About" description="" />
<siteMapNode url="~/Contact.aspx" title="Contact" description="" />
<siteMapNode url="~/Admin.aspx" title="Admin" description="" />
<siteMapNode url="~/Test.aspx" title="Test" description="" />
</siteMapNode>
On one menu I want everthing up to (but not including) test displayed. On another menu I want everything from test on displayed. Documentation and config options state that this is quite possible but I can't seem to get it to work! Any help would be great!