J
Jim
Using aspx and vb, I have breadcrumbs for my site. The problem is that I
want the breadcrumbs to have all the pages listed from root, parent to
current listed in it. The only way I can do this is to have each page
listed in the web.sitemap file.
The problem is that I don't want all the pages to be listed in the menu
navigation. Specifically, I don't want the "Part Details" to be listed in
the navigation menu.
For example, I want to navigation menu to list:
Parts
- Part List
- Search Parts
And the breadcrumbs to list:
Home -> Parts List -> Part Details
web.sitemap code:
<siteMapNode title="Home" url="~/Default.aspx"/>
<siteMapNode title="Parts" url="~/Parts/Default.aspx">
<siteMapNode title="Part List" url="~/Parts/PartList.aspx" />
<siteMapNode title="Part Details" url="~/Parts/PartDetails.aspx"/>
<siteMapNode title="Search Parts" url="~/Parts/SearchParts.aspx"/>
</siteMapNode>
Is there anyway to do this?
want the breadcrumbs to have all the pages listed from root, parent to
current listed in it. The only way I can do this is to have each page
listed in the web.sitemap file.
The problem is that I don't want all the pages to be listed in the menu
navigation. Specifically, I don't want the "Part Details" to be listed in
the navigation menu.
For example, I want to navigation menu to list:
Parts
- Part List
- Search Parts
And the breadcrumbs to list:
Home -> Parts List -> Part Details
web.sitemap code:
<siteMapNode title="Home" url="~/Default.aspx"/>
<siteMapNode title="Parts" url="~/Parts/Default.aspx">
<siteMapNode title="Part List" url="~/Parts/PartList.aspx" />
<siteMapNode title="Part Details" url="~/Parts/PartDetails.aspx"/>
<siteMapNode title="Search Parts" url="~/Parts/SearchParts.aspx"/>
</siteMapNode>
Is there anyway to do this?