Mega Code Archive

 
Categories / ASP.Net Tutorial / Development
 

Creating a custom navigation display using the CurrentNode property (VB)

<%@ Page Language="VB" %> <script runat="server" language="vb">         Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)            Hyperlink1.Text = SiteMap.CurrentNode.ParentNode.ToString()         Hyperlink1.NavigateUrl = SiteMap.CurrentNode.ParentNode.Url                  Hyperlink2.Text = SiteMap.CurrentNode.PreviousSibling.ToString()         Hyperlink2.NavigateUrl = SiteMap.CurrentNode.PreviousSibling.Url                  Hyperlink3.Text = SiteMap.CurrentNode.NextSibling.ToString()         Hyperlink3.NavigateUrl = SiteMap.CurrentNode.NextSibling.Url     End Sub </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head runat="server">     <title>SiteMapDataSource</title> </head> <body>     <form id="form1" runat="server">         Move Up:         <asp:Hyperlink ID="Hyperlink1" Runat="server"></asp:Hyperlink><br />         <asp:Hyperlink ID="Hyperlink2" Runat="server"></asp:Hyperlink> |          <asp:Hyperlink ID="Hyperlink3" Runat="server"></asp:Hyperlink>           </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="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>