SiteMapPath.SiteMapProvider Property
Assembly: System.Web (in system.web.dll)
[ThemeableAttribute(false)] public: virtual property String^ SiteMapProvider { String^ get (); void set (String^ value); }
/** @property */ public String get_SiteMapProvider () /** @property */ public void set_SiteMapProvider (String value)
public function get SiteMapProvider () : String public function set SiteMapProvider (value : String)
Not applicable.
Property Value
The name of a SiteMapProvider that defines the navigation structure for the SiteMapPath to display. All available providers are contained in the System.Web.SiteMap.Providers collection, and can be enumerated and retrieved by name using the Item property.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 System.Web.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 Introduction to ASP.NET Themes.