siteMap

How to skip the root node from the site map in ASP.NET

By default, the site map tree begins with the single root node from the site map. You can decide to skip it in your project, because it introduces a top-level link which might not be very useful. In the example described in the article: How to use the SiteMapPath navigation control in ASP.NET, you may not …

Learn more

How to customize the SiteMapPath navigation control in ASP.NET

The SiteMapPath control, described in the article: How to use the SiteMapPath navigation control in ASP.NET, is also fully customizable. The next table lists some of its most frequently configured properties:

 

Property

Description

ShowToolTips

If you don’t want the description text to appear when the user hovers over a part of the …

Learn more

How to define a site map in ASP.NET

ASP.NET ships with a single site map provider, named XmlSiteMapProvider which looks for an XML file named Web.sitemap in the root of the virtual directory and retrieves site map information from it. If you want to retrieve a site map from another location or in a custom format, you’ll need to create your own site map …

Learn more

How site maps work in ASP.NET

ASP.NET includes a set of navigation features that you can use to implement a navigation system in your web based project. ASP.NET navigation is flexible, configurable, and pluggable. It has three components:

– With first component you can define the navigational structure of your website. This part is the XML site map, which …

Learn more