site map and navigation

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?
 
C

Cowboy \(Gregory A. Beamer\)

Answered in microsoft.public.expression.webdesigner

--
Gregory A. Beamer
MVP, MCP: +I, SE, SD, DBA

*************************************************
| Think outside the box!
|
*************************************************
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top