Mega Code Archive

 
Categories / ASP.Net Tutorial / Development
 

Working with the CurrentNode object (C#)

<%@ Page Language="C#" %> <script runat="server">         protected void Page_Load(object sender, System.EventArgs e)     {         Label1.Text = SiteMap.CurrentNode.Description + "<br>" +             SiteMap.CurrentNode.HasChildNodes + "<br>" +             SiteMap.CurrentNode.NextSibling.ToString() + "<br>" +             SiteMap.CurrentNode.ParentNode.ToString() + "<br>" +             SiteMap.CurrentNode.PreviousSibling.ToString() + "<br>" +             SiteMap.CurrentNode.RootNode.ToString() + "<br>" +             SiteMap.CurrentNode.Title + "<br>" +             SiteMap.CurrentNode.Url;     } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server">     <title>SiteMapDataSource</title> </head> <body>     <form id="form1" runat="server">         <asp:Label ID="Label1" Runat="server"></asp:Label>     </form> </body> 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="U.S." description="U.S. 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>