SiteMapPath::RenderCurrentNodeAsLink Property

 

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)

public:
property bool RenderCurrentNodeAsLink {
	virtual bool get();
	virtual void set(bool value);
}

Property Value

Type: System::Boolean

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.

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: