SiteMapNodeItem.SiteMapNode Property

Note: This property is new in the .NET Framework version 2.0.

Gets or sets the SiteMapNode object that the SiteMapNodeItem represents.

Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)

public:
virtual property SiteMapNode^ SiteMapNode {
	SiteMapNode^ get ();
	void set (SiteMapNode^ value);
}
/** @property */
public SiteMapNode get_SiteMapNode ()

/** @property */
public void set_SiteMapNode (SiteMapNode value)

public function get SiteMapNode () : SiteMapNode

public function set SiteMapNode (value : SiteMapNode)

Property Value

A SiteMapNode object that the SiteMapPath control uses to display a site navigation user interface.

The SiteMapNode property gets or sets the SiteMapNode that the SiteMapNodeItem is bound to. SiteMapNodeItem objects that have a PathSeparator type are not bound to a corresponding SiteMapNode object.

The following code example demonstrates how to get the SiteMapNode property and access the Title and Url properties of a SiteMapNode object. This code example is part of the larger example provided for a SiteMapPath class.

No code example is currently available or this language may not be supported.
// Override the InitializeItem method to add a PathSeparator
// and DropDownList to the current node.
protected void InitializeItem(SiteMapNodeItem item)
{
    // The only node that must be handled is the CurrentNode.
    if (item.get_ItemType().Equals(SiteMapNodeItemType.Current)) {
        HyperLink hLink = new HyperLink();
        // No Theming for the HyperLink.
        hLink.set_EnableTheming(false);
        // Enable the link of the SiteMapPath is enabled.
        hLink.set_Enabled(this.get_Enabled());
        // Set the properties of the HyperLink to 
        // match those of the corresponding SiteMapNode.
        hLink.set_NavigateUrl(item.get_SiteMapNode().get_Url());
        hLink.set_Text(item.get_SiteMapNode().get_Title());
        if (get_ShowToolTips()) {
            hLink.set_ToolTip(item.get_SiteMapNode().get_Description());
        }
        // Apply styles or templates to the HyperLink here.
        // ...
        // ...
        // Add the item to the Controls collection.
        item.get_Controls().Add(hLink);

        AddDropDownListAfterCurrentNode(item);
    }
    else {
        super.InitializeItem(item);
    }   
} //InitializeItem

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.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: