SiteMapPath.SiteMapProvider Property

Definition

Gets or sets the name of the SiteMapProvider used to render the site navigation control.

public:
 virtual property System::String ^ SiteMapProvider { System::String ^ get(); void set(System::String ^ value); };
[System.Web.UI.Themeable(false)]
public virtual string SiteMapProvider { get; set; }
[<System.Web.UI.Themeable(false)>]
member this.SiteMapProvider : string with get, set
Public Overridable Property SiteMapProvider As String

Property Value

The name of a SiteMapProvider that defines the navigation structure for the SiteMapPath to display. All available providers are contained in the Providers collection, and can be enumerated and retrieved by name using the Item[String] property.

Attributes

Remarks

The SiteMapPath control uses a SiteMapProvider as a source for the site map data it renders. If the SiteMapProvider property is not set, the SiteMapPath control uses the provider identified by the SiteMap.Provider property, which is the default SiteMapProvider defined for the site in the configuration hierarchy, typically the XmlSiteMapProvider. Setting the SiteMapProvider property directs the SiteMapPath control to render the site map data that the provider defines.

The SiteMapPath control works directly with a SiteMapProvider and its SiteMapNode objects to display site map information. Other controls, such as Menu and TreeView, require a data abstraction, provided by the SiteMapDataSource class, to display the same site navigation information.

The value of this property is stored in view state.

This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins.

Applies to

See also