BulletedList SiteMapDataSource Consumer : Web.sitemap « Sitemap « ASP.Net






BulletedList SiteMapDataSource Consumer


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

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<head runat="server">
    <meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body>
   <form id="form1" runat="server">
   <div id="container">
      <h1>SiteMap Consumer</h1>
      <asp:BulletedList ID="bulHoriz" runat="Server"  
         DataValueField="url" DataTextField="title"
         DataSourceID="siteSource" DisplayMode="HyperLink" />
      <asp:BulletedList ID="bulVert" runat="Server" 
         DataValueField="url" DataTextField="title"
         DataSourceID="siteSource" DisplayMode="HyperLink" />
      <asp:SiteMapDataSource ID="siteSource" runat="server" 
         ShowStartingNode="false"  />
   </div>
   </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 url="BookHome.aspx" title="Home"  
            description="Return to home page">
      <siteMapNode url="Catalog.aspx" title="Catalog" >
         <siteMapNode url="Categories.aspx" title="Categories" >
            <siteMapNode url="List.aspx?cat=1" title="Graphics" />
            <siteMapNode url="List.aspx?cat=2" title="Internet" />
            <siteMapNode url="List.aspx?cat=3" title="Networking" />
         </siteMapNode>
         <siteMapNode url="Series.aspx" title="Series" >
            <siteMapNode url="List.aspx?series=1" title="Core Series" />
            <siteMapNode url="List.aspx?series=2" title=".NET Series" />
            <siteMapNode url="List.aspx?series=3" title="Signature Series"/>
         </siteMapNode>
      </siteMapNode>
      <siteMapNode url="Search.aspx" title="Search"  />
      <siteMapNode url="Help.aspx" title="Help" >
         <siteMapNode url="About.aspx" title="About Us" />
         <siteMapNode url="Contact.aspx" title="Contact Us" />
      </siteMapNode>
   </siteMapNode>
</siteMap>

 








Related examples in the same category

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