SiteMap.Enabled Property
.NET Framework 3.0
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.
Namespace: System.Web
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
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>
Community Additions
ADD
Show: