| |||||||||||||||
<siteMap> SectionASP.NET Syntax ASP.NET Configuration Sections .NET Framework version 2.0 Defines configuration settings to support the navigation infrastructure for configuring, storing, and rendering site navigation. <siteMap defaultProvider = "provider name"> <providers>...</providers> </siteMap> Attributes and ElementsThe following sections describe attributes, child elements, and parent elements. Attributes
Child Elements
Parent Elements
Default ConfigurationThe following default siteMap element is configured in the root Web.config file in the .NET Framework version 2.0. <siteMap>
<providers>
<add siteMapFile = "web.sitemap" name = "AspNetXmlSiteMapProvider"
type = "System.Web.XmlSiteMapProvider, System.Web, Version=2.0.0.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
</providers>
</siteMap>
ExampleThe following code example shows how to add a site map provider in the Web.config file to override the default site map provider that is defined for ASP.NET. <configuration>
<system.web>
<siteMap defaultProvider = "XmlSiteMapReader">
<providers>
<add name = " XmlSiteMapReader"
type = "XmlSiteMapProvider, System.Web, Version=1.1.3300.0,
Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"
siteMapFile = "my.sitemap"
description = "XmlSiteMapProvider that loads my.sitemap" />
</providers>
</siteMap>
</system.web>
</configuration>
See AlsoASP.NET Configuration SiteMapSection Class |
| ||||||||||||||
Check out related books at Amazon
© 2000-2008 Rey Nuñez All rights reserved.
If you have any question, comment or suggestion
about this site, please send us a note
You can help support aspxtreme