SiteMapPath.RenderCurrentNodeAsLink Property
.NET Framework 3.0
Indicates whether the site navigation node that represents the currently displayed page is rendered as a hyperlink.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
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)
Not applicable.
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 System.Web.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 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: