SiteMapDataSource.StartingNodeUrl Property
.NET Framework 3.0
Gets or sets a node in the site map that the data source then uses as a reference point to retrieve nodes from a hierarchical site map.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
public: virtual property String^ StartingNodeUrl { String^ get (); void set (String^ value); }
/** @property */ public String get_StartingNodeUrl () /** @property */ public void set_StartingNodeUrl (String value)
public function get StartingNodeUrl () : String public function set StartingNodeUrl (value : String)
Not applicable.
Property Value
The URL of a node in the site map. The SiteMapDataSource retrieves the identified SiteMapNode and any child nodes from the site map. The default is an Empty.The SiteMapDataSource property binds to site map data and presents its view based on a specified starting node in the site map hierarchy. By default, the starting node is the root node of the hierarchy, but you can set the starting node to any node with the StartingNodeUrl property or set the StartFromCurrentNode property to true.
Note: |
|---|
| If you are not familiar with the data access features in ASP.NET 2.0, you might find it useful to review the following topics before continuing: |
The value of the StartingNodeUrl property is stored in view state.
The following code example demonstrates how to declaratively set the StartingNodeUrl property and bind a TreeView control to a SiteMapDataSource control.
<%@ 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 runat="server">
<title>ASP.NET Example</title>
</head>
<body>
<form id="form1" runat="server">
<asp:SiteMapDataSource
id="SiteMapDataSource1"
runat="server"
StartingNodeUrl="WebForm1.aspx">
</asp:SiteMapDataSource>
<asp:TreeView
id="TreeView1"
runat="server"
DataSourceID="SiteMapDataSource1">
</asp:TreeView>
</form>
</body>
</html>
<siteMap>
<siteMapNode title="Home" url="~/Home.aspx" >
<siteMapNode title="Warehouses"
url="~/warehouse/warehouses.aspx" />
<siteMapNode title="Inventory Levels"
url="~/inventory/inventory.aspx" />
<siteMapNode title="Administration" >
<siteMapNode title="Create New User"
url="~/usermanagement/createnewuser.aspx"/>
<siteMapNode title="Manage Roles"
url="~/usermanagement/roles.aspx"/>
<siteMapNode title="Manage User-to-Role Assignments"
url="~/usermanagement/manageuserroles.aspx"/>
</siteMapNode>
<siteMapNode title="Help" url="~/help.aspx" />
<siteMapNode title="Home" url="~/Home.aspx?" />
</siteMapNode>
</siteMap>
Community Additions
ADD
Show:
Note: