Directory structure:
Project - Default.aspx
Project > Customers
Project > Customers/Default.aspx
Project > Customers/View.aspx
So one folder called Customers with two aspx pages (Default and view)
I add a Web.sitemap file with the below XML
<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
<siteMapNode url="default.aspx" title="Home" description="Home">
<siteMapNode url="Customers/default.aspx" title="Customers" description="Customer Summary" />
<siteMapNode url="Customers/View.aspx" title="Details" description="Customer details" />
</siteMapNode>
</siteMap>
When i navigate to the home page, i see "Home" - which is fine.
When i navigate to Customers/Def ...
Go to the complete details ...