The XmlSiteMapProvider looks for a file named Web.sitemap in the root of the virtual directory.
XmlSiteMapProvider extracts the site map data and create the corresponding SiteMap object.
This SiteMap object is then made available to the SiteMapDataSource, which you place on every page that uses navigation.
Rule 1: Site Maps Begin with the <siteMap> Element.
Every Web.sitemap file begins by declaring the <siteMap>.
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0">
...
</siteMap>
Rule 2: Each Page Is Represented by a <siteMapNode> Element
To insert a page into the site map, you add the <siteMapNode> element.
You need to supply the title of the page, a description, and the URL.
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0">
<siteMapNode title="Home" description="Home" url="~/default.aspx" />
</siteMap>
The ~/ characters represent the root folder of your web application.
Rule 3: A <siteMapNode> Element Can Contain Other <siteMapNode> Elements
<siteMapNode title="Home" description="Home" url="~/default.aspx">
<siteMapNode title="Products" description="Our products" url="~/products.aspx" />
<siteMapNode title="Hardware" description="Hardware choices" url="~/hardware.aspx" />
</siteMapNode>
You can omit the url attribute, as shown here with the Products node:
<siteMapNode title="Products" description="Products">
<siteMapNode title="In Stock" description="Products that are available" url="~/inStock.aspx" />
<siteMapNode title="Not In Stock" description="Products that are on order" url="~/outOfStock.aspx" />
</siteMapNode>
Rule 4: Every Site Map Begins with a Single <siteMapNode>
A site map must always have a single root node.
Rule 5: Duplicate URLs Are Not Allowed
|