SiteMapPath.RenderCurrentNodeAsLink Property
Assembly: System.Web (in system.web.dll)
public: virtual property bool RenderCurrentNodeAsLink { bool get (); void set (bool value); }
/** @property */ public boolean get_RenderCurrentNodeAsLink () /** @property */ public void set_RenderCurrentNodeAsLink (boolean value)
public function get RenderCurrentNodeAsLink () : boolean public function set RenderCurrentNodeAsLink (value : boolean)
Property Value
true if the node that represents the current page is rendered as a hyperlink; otherwise, false. The default value is false.The node that represents the currently displayed page is the SiteMap.CurrentNode. Its Title property specifies the text to display for the current node, and its Url property is used to create a hyperlink. By default, no hyperlink is rendered for the current page to prevent erroneous form posts.
The value of this property is stored in view state.
| Topic | Location |
|---|---|
| Walkthrough: Adding Site Navigation to a Web Site | Building ASP .NET Web Applications in Visual Studio |
The following code example demonstrates how to set the RenderCurrentNodeAsLink property to true to make the current node a hyperlink when the SiteMapPath control renders its content.
<%@ 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.