Click here to Skip to main content
15,884,177 members
Articles / Web Development / ASP.NET
Article

Microsoft Content Management Server Site Map control (C#)

Rate me:
Please Sign up or sign in to vote.
4.33/5 (8 votes)
17 May 2006CPOL3 min read 74.1K   974   31   2
Displays the CMS channel structure in a hierarchical tree that is expandable and collapsible.

Sample Image - sample.gif

Introduction

For use in Microsoft Content Management Server, this Site Map web control, written in C#, displays channel and posting structure in a hierarchical tree that is expandable and collapsible when viewed in a IE4+ or NS6+ browsers. When viewed in NS4, the tree is fully expanded. The starting channel is configurable, so you can have multiple instances of the control in one page, rendering different portions of a site if so desired.

A VB.NET version of this control is available here.

Description

The web control has several public properties:

  • StartChannelPath - Optional. Starting channel path. Default is "/channels/".
  • ImagePath - Optional. IIS path to the three icons. Default is "/<MCMS Site Application Name>/images/".
  • JavascriptPath - Mandatory. IIS path to the JavaScript file SiteMap.js. E.g.: "/<MCMS Site Application Name>/Includes/".
  • ExpandMap - Optional. Fully expand the channel and posting tree on first load. Valid values are true and false. Default is true.
  • SortChildrenBy - Optional. Display order of channels and postings in tree. Valid values are "Display Name", "Name", and "Ordinal". Default is no sorting.
  • ShowPostings - Optional. Display postings in the tree. Valid values are true and false. Default is false.
  • DefaultPostingName - Optional. When ShowPostings is true and there is default posting for the channel, specify the default posting name to hide the default postings from the tree. For example, "default".
  • ShowDescription - Optional. Show channel and posting descriptions in hyperlink tooltips. Valid values are true and false. Default is true.
  • MaxLevels - Optional. Show the specified number of channel levels only. Default is "0" which shows all channel levels.

Installation instructions

  1. Copy SiteMap.cs to the web control directory of your MCMS site.
  2. In your SiteMap template, register the control, include SiteMap.css, and insert the control. For example:
    ASP.NET
    <%@ Register TagPrefix="wc1" 
      Namespace="QuestechSystems.WebControls"
      Assembly="Web Control Library Assembly Name" %>
    ...
    <head>
    ...
    <link rel="stylesheet" 
      href="/<MCMS Site Application Name>/style/SiteMap.css" 
      media="all">
    ...
    </head>
    ...
    <wc1:SiteMap id="SiteMap" runat="server" StartChannelPath="" 
      JavascriptPath="/<MCMS Site Application Name>/Includes/" 
      ExpandMap="" SortChildrenBy="Display Name" 
      ShowPostings="true" DefaultPostingName="default"
      ShowDescription="" MaxLevels="0">
    </wc1:SiteMap>
    ...

    If your like the Expand All and Collapse All links as shown in the above picture, add links to the template like:

    HTML
    <a href="#" onclick="actionLayer(true);return false">Expand All</a>
    <a href="#" onclick="actionLayer(false);return false">Collapse All</a>

    Note the media="all" attribute in the stylesheet reference. It prevents NS4 from reading it, as SiteMap.css is not compatible with NS4. If you don't care for NS4, you can also copy the content of SiteMap.css and add it into your site stylesheet.

    Please check if there are any conflicts between your site stylesheet and SiteMap.css. For example, the sample site WoodgroveNet messes up the rendering quite badly.

  3. Copy channel.gif, channelopen.gif, and channelclosed.gif into the image directory as specified in the property ImagePath.
  4. Copy SiteMap.js into the directory as specified in the property JavascriptPath.
  5. Rebuild the solution in VS.NET.

History

  • V1.0 - 2004.04.26 - Base.
  • V1.1 - 2005.02.12 - Added an option to limit the channel depth. (Please note that the namespace and class names have changed.)
  • V1.2 - 2005.03.13 - Added an option to show the postings in a tree. (Please note that the CSS class names have changed.)
  • V1.3 - 2005.04.15 - Fixed NullReferenceException when control is used on a non-template page.
  • V1.4 - 2006.05.14 - Added an ASP.NET 2.0 version.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
Canada Canada
A Microsoft Certified Professional Developer and Technology Specialist.

Experience and expertise in SharePoint 2016 / 2013 / 2010 / 2007.

Role ranges from a developer in a multi-person team to a solution consultant with expert-level skills, leading a project to completion status.

Proven experience working effectively in a team environment and a self-managed environment.

Comments and Discussions

 
GeneralSlight bug Pin
Rick Mason15-Apr-05 2:53
Rick Mason15-Apr-05 2:53 
GeneralRe: Slight bug Pin
Stephen Huen15-Apr-05 7:11
Stephen Huen15-Apr-05 7:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.