Using the Web.sitemap file with a SiteMapPath server control : Web.sitemap « Sitemap « ASP.Net






Using the Web.sitemap file with a SiteMapPath server control


<%@ Page Language="C#" %>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
    <title>Using the SiteMapPath Server Control</title>
</head>
<body>
    <form id="form1" runat="server">
        <asp:SiteMapPath ID="Sitemappath1" Runat="server">
        </asp:SiteMapPath>
    </form>
</body>
</html>


File: Web.sitemap

<?xml version="1.0" encoding="utf-8" ?>
    
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
   
   <siteMapNode title="Home" description="Home Page" url="Default.aspx">
      <siteMapNode title="News" description="The Latest News" url="News.aspx">
         <siteMapNode title="A" description="A News" url="News.aspx?cat=us" />
         <siteMapNode title="World" description="World News" url="News.aspx?cat=world" />
         <siteMapNode title="Technology" description="Technology News" url="News.aspx?cat=tech" />
         <siteMapNode title="Sports" description="Sports News" url="News.aspx?cat=sport" />
      </siteMapNode>
      <siteMapNode title="Weather" description="The Latest Weather" url="Weather.aspx" />
   </siteMapNode>
</siteMap>

 








Related examples in the same category

1.An example of a Web.sitemap file
2.Changing the PathSeparator value
3.Adding style to the PathSeparator property
4.Using an image as the separator
5.Creating a basic .sitemap file for localization
6.Use different site maps as well as the ability to choose a site map
7.Display Levels
8.TreeView ImageSets
9.Set the dispay levels in a Menu control
10.SiteMapNode
11.BulletedList SiteMapDataSource Consumer