Click or drag to resize
KaxSiteMapNode Constructor
Initializes a new instance of the KaxSiteMapNode class.

Namespace: Kettic.AspNet.Controls
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public KaxSiteMapNode()
Remarks
Use this constructor to create and initialize a new instance of the KaxSiteMapNode class using default values.
Examples
The following example demonstrates how to add node to KaxSiteMap controls.
KaxSiteMapNode node = new KaxSiteMapNode();
node.Text = "News";
node.NavigateUrl = "~/News.aspx";

KaxSiteMap1.Nodes.Add(node);
See Also