PathDirection Enumeration
.NET Framework 3.0
Indicates the hierarchical order in which navigation nodes are rendered for site-navigation controls.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The PathDirection enumeration is used by the SiteMapPath control to specify the ordering used to render site map nodes. If the PathDirection property is set to RootToCurrent, the navigation path is displayed in the most common way, from the top-most node to the current node, from left to right. If the PathDirection is set to CurrentToRoot, the navigation path is displayed from the current node to the top-most node, from left to right.
The following code example demonstrates how to declaratively set the PathDirection property of a SiteMapPath in a Web Forms page.
<%@ Page Language="VJ#"%>
<!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" >
<head>
<title>Catalog</title>
</head>
<body>
<form id="Form1" method="post" runat="server">
<p><asp:SiteMapPath runat="server" ID="SiteMapPath1"
RootNodeStyle-Font-Bold="true"
RootNodeStyle-Font-Names="Arial Black"
RootNodeStyle-Font-Italic="True"
RootNodeStyle-ForeColor="Green"
CurrentNodeStyle-ForeColor="Orange"
PathSeparator="<::>"
PathDirection="CurrentToRoot"
RenderCurrentNodeAsLink="false"
ShowToolTips="false"/></p>
</form>
</body>
</html>
Community Additions
ADD
Show: