SiteMap::Enabled Property
.NET Framework (current version)
Gets a Boolean value indicating if a site map provider is specified in the Web.config file and if the site map provider is enabled.
Assembly: System.Web (in System.Web.dll)
Property Value
Type: System::Booleantrue if a site map provider is configured and enabled; otherwise, false.
A default site map configuration is specified that manages the site navigation configuration. You can override this configuration in the Web.config file, should you choose to write your own site map provider.
The following code example is a Web.config configuration section that demonstrates how an XmlSiteMapProvider object is declared to be the default SiteMapProvider object.
<siteMap defaultProvider="MyXmlSiteMapProvider" enabled="true">
<providers>
<add name="MyXmlSiteMapProvider"
description="SiteMap provider that reads in .sitemap XML files."
type="System.Web.XmlSiteMapProvider, System.Web, Version=2.0.3600.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
siteMapFile="my.sitemap" />
</providers>
</siteMap>
.NET Framework
Available since 2.0
Available since 2.0
Show: