PathDirection Enumeration
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>
<HEAD>
<title>Catalog</title>
</HEAD>
<body MS_POSITIONING="FlowLayout">
<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"
CurrentNodeAsLink="false"
ShowToolTips="false"/></p>
</form>
</body>
</HTML>
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.