Development ASP.Net Tutorial

<%@ Page Language="C#" %>
    
    protected void Page_Load(object sender, System.EventArgs e)
    {
        Label1.Text = SiteMap.CurrentNode.Description + "
" +
            SiteMap.CurrentNode.HasChildNodes + "
" +
            SiteMap.CurrentNode.NextSibling.ToString() + "
" +
            SiteMap.CurrentNode.ParentNode.ToString() + "
" +
            SiteMap.CurrentNode.PreviousSibling.ToString() + "
" +
            SiteMap.CurrentNode.RootNode.ToString() + "
" +
            SiteMap.CurrentNode.Title + "
" +
            SiteMap.CurrentNode.Url;
    }



    SiteMapDataSource


    
        
    

File: Web.sitemap