PathDirection Enumeration
Indicates the hierarchical order in which navigation nodes are rendered for site-navigation controls.
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="c#"%> <!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>
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.