Click here to Skip to main content
6,595,444 members and growing! (18,401 online)
Email Password   helpLost your password?
Enterprise Systems » SharePoint Server » Web Parts     Intermediate License: The Code Project Open License (CPOL)

Site Map Web Part for Microsoft Office SharePoint Server (MOSS)

By Stephen Huen

Displays the site structure in a hierarchical tree that is expandable and collapsible
C#, XML, Windows, .NET (.NET 2.0), ASP.NET, Visual Studio (VS2008), Dev
Version:2 (See All)
Posted:7 Dec 2006
Updated:25 May 2009
Views:107,251
Bookmarked:51 times
Announcements
Loading...
 
Search    
Advanced Search
Add to IE Search
printPrint   add Share
      Discuss Discuss   Broken Article?Report  
5 votes for this article.
Popularity: 2.87 Rating: 4.10 out of 5
1 vote, 20.0%
1

2
1 vote, 20.0%
3

4
3 votes, 60.0%
5
Screenshot - sample.gif

Introduction

For use in Microsoft Office SharePoint Server (MOSS) 2007, this Web Part displays the site structure in a hierarchical tree that is expandable and collapsible. It is based on my Site Map custom control written for Content Management Server 2002.

Description

The Web Part uses a PortalSiteMapProvider to render the site structure in a hierarchical tree that is expandable and collapsible. The PortalSiteMapProvider is referenced from the site's web.config and is defaulted to be CurrentNavSiteMapProvider, as used in the out-of-the-box "Current Navigation".

It has several public properties:

  • SiteMapProvider - (Site Map Provider) A site map provider of type PortalSiteMapProvider. Default is CurrentNavSiteMapProvider
  • StartNodeKey - (Starting Site URL) Server-relative URL for a starting sub-site.
    For example: /PressReleases/2006. Default is the root site.
  • ExpandMap - (Expand Map?) Expand all nodes on page load. Default is true
  • IncludeSubSites - (Include sub-sites?) Show sub-sites in node. Valid values are Always, Never and PerWeb. Default is PerWeb, i.e. a per sub-site setting configurable in the Modify Navigation Site Actions menu
  • IncludePages - (Include Pages?) Show pages in nodes. Valid values are Always, Never and PerWeb. Default is PerWeb, i.e. a per sub-site setting configurable in the Modify Navigation Site Actions menu
  • MaxLevels - (Maximum levels) Maximum number of node levels
  • ListCssClass - CSS class name for the outermost <ul> tag
  • NodeCssClass - CSS class name for regular hyperlinked nodes
  • CurrentNodeCssClass - CSS class name for a selected node
  • NoUrlNodeCssClass - CSS class name for nodes with no URL, like headings

The Web Part uses two methods to include resources. Images are treated as Class Resources and JavaScript files are treated as Embedded Resources. To package images as Class Resources in a Solution, include them in Manifest.xml, like:

<?xml version="1.0" encoding="utf-8" ?>
<Solution xmlns="http://schemas.microsoft.com/sharepoint/"
    SolutionId="SolutionGuid" ResetWebServer="TRUE">
    <Assemblies>
        <Assembly Location="QuestechSystems.SharePoint.Publishing.SiteMap.dll"
            DeploymentTarget="GlobalAssemblyCache">
            <ClassResources>
                <ClassResource Location="images\node-closed.gif" />
                <ClassResource Location="images\node-open.gif" />
                <ClassResource Location="images\node.gif" />
            </ClassResources>
            <SafeControls>
                <SafeControl Assembly="QuestechSystems.SharePoint.Publishing.SiteMap,
                    Version=1.0.0.0,
                    Culture=neutral, PublicKeyToken=AssemblyToken"
                    Namespace=
                    "QuestechSystems.SharePoint.Publishing.WebControls"
                    TypeName="*" Safe="True" />
            </SafeControls>
        </Assembly>
    </Assemblies>
    <FeatureManifests>
        <FeatureManifest Location="QuestechSiteMapWebPart\Feature.xml" />
    </FeatureManifests>
</Solution>

In Solution deployment, resource files are deployed based on the assembly destination. For assemblies deployed to the bin directory, resource files are copied to an assembly subdirectory under the wpresources directory of the destination IIS Web application. For assemblies deployed to GAC, resource files are copied to an assembly subdirectory under virtual directory _wpresources. In the code, a path to resource files is obtained from SPWebPartManager.GetClassResourcePath.

For the JavaScript file SiteMap.js, set its build action to "Embedded Resource" in Visual Studio 2008. In code, reference the file using Page.ClientScript.GetWebResourceUrl. You will need to pass in the file in the form of [Assembly of project].[Folder containing resource].[Filename of resource]. In AssemblyInfo.cs, include SiteMap.js in the same format like:

[assembly: System.Web.UI.WebResource
    ("QuestechSystems.SharePoint.Publishing.ClientScripts.
    SiteMap.js", "text/javascript")]

The Web Part also uses a resource file to store all messages and property attribute UI strings. It demonstrates how to develop a custom class that inherits WebDescriptionAttribute, WebDisplayNameAttribute or CategoryAttribute and returns a localized string from your own Resource Manager.

The sample Visual Studio 2008 solution includes all the support files you need to build and deploy this Web Part, minus strong name key files (*.snk). It contains three projects: Deployment, Features and SharePoint.Publishing. The SharePoint.Publishing project contains source codes for the Web Part. The Features project contains all the features to support the SharePoint.Publishing project. The Deployment project contains a pre-build script to aggregate all the files needed for deployment. It contains a Solution directory where a WSP file is generated and deployed by a post-build script.

This structure of Visual Studio solution and projects is scalable to full blown MOSS/WSS development and deployment. You could add additional projects like SharePoint for WSS or MOSS non-publishing development or SharePoint.ApplicationPages for customization of administrative layout pages. Within your projects, you could have other custom components like user and Web controls, custom fields, feature receivers, etc.

Installation

Using stsadm, install solution file QuestechSiteMap.wsp in \Deployments\Solution\:

stsadm -o addsolution -filename QuestechSiteMap.wsp

Go to SharePoint Central Administration/Operations/Global Configuration-Solution Management. Deploy the installed solution to selected Web applications. In the site collection where the solution is deployed, activate Feature Questech Systems Site Map Web Part. After that, the Site Map Web Part should be available for you to add to pages.

References

  1. CodeGuru: Write Custom WebParts for SharePoint 2007
  2. Eric Stallworth: How To Build a Solution Pack (WSP)
  3. Stephen Huen: Microsoft Content Management Server Site Map control (C#)

History

  • V1.5 - 2009.05.22
    • Converted Visual Studio solution projects to version 2008
    • New SharePoint Solution QuestechSiteMap.wsp and assembly QuestechSystems.SharePoint.Publishing.SiteMap.dll. This allows my other sample solutions in CodeProject to co-exist with this Web Part.
    • Renamed feature from QuestechPublishingWebParts to QuestechSiteMapWebPart
  • V1.4 - 2008.04.12
    • Included sample Visual Studio 2005 solution for compiling and deploying the Web part
    • Updated installation instructions
  • V1.31 - 2007.10.02
    • Removed InstallPackage.bat as it confuses people that a compilation is not needed
  • V1.3 - 2007.09.18
    • Namespace and class name changed
    • Added properties SiteMapProvider and IncludeSubSites
    • Added resource file for property attribute UI strings and error messages
    • Removed sitemap.wsp from sample files
  • V1.21 - 2007.04.25
    • Removed limit of 50 nodes/sites at each level
  • V1.2 - 2007.04.20
    • Removed restriction on "Publishing" site types only
  • V1.12 - 2007.04.11
    • Fixed sitemap.wsp solution install error
  • V1.11 - 2007.03.20
    • Fixed missing icon images
    • Better error handling
  • V1.1 - 2007.03.06
    • Extracted JavaScript codes to external *.js file as embedded resource
    • Relocated icon images to be used as class resource
  • V1.0 - 2006.12.07 - Base

License

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

About the Author

Stephen Huen


Member

Occupation: Web Developer
Company: Questech Systems
Location: Canada Canada

Other popular SharePoint Server articles:

Article Top
You must Sign In to use this message board.
FAQ FAQ 
 
Noise Tolerance  Layout  Per page   
 Msgs 1 to 25 of 82 (Total in Forum: 82) (Refresh)FirstPrevNext
GeneralDoesn't have indentation PinmemberMember 44979918:15 26 Jul '09  
GeneralRe: Doesn't have indentation PinmemberCurtis Shirley8:32 28 Aug '09  
GeneralIneed to localized to another language PinmemberMember 20671066:17 15 Jul '09  
GeneralBroken images Pinmembercheong69@yahoo.com16:52 19 Jun '09  
GeneralRe: Broken images PinmemberStephen Huen14:08 29 Jun '09  
GeneralRe: Broken images Pinmembercheong69@yahoo.com16:24 5 Jul '09  
GeneralRe: Broken images PinmemberStephen Huen18:05 7 Jul '09  
GeneralRe: Broken images PinmemberMember 46531306:35 27 Jul '09  
GeneralRe: Broken images Pinmember4wildkat6:40 2 Oct '09  
GeneralRe: Broken images Pinmembercharmingbalu2:18 26 Oct '09  
QuestionPublishing as well as non publishing websites Pinmember.Netter4:51 30 Jan '09  
GeneralDeep Down Pinmemberkundankoman8:43 22 Jan '09  
General"Cannot import this webpart" PinmemberRickyTH22:05 3 Nov '08  
QuestionCss class Pinmemberlattelis3:30 11 Jun '08  
GeneralUnable to open the solution Pinmembersunil_limje2:09 3 May '08  
GeneralRe: Unable to open the solution PinmemberStephen Huen7:15 4 May '08  
GeneralRe: Unable to open the solution Pinmembersunil_limje0:40 5 May '08  
GeneralRe: Unable to open the solution PinmemberStephen Huen7:06 5 May '08  
GeneralRe: Unable to open the solution Pinmembersunil_limje22:17 6 May '08  
GeneralRe: Unable to open the solution PinmemberStephen Huen7:39 7 May '08  
GeneralLicence terms? PinmemberAntti802:30 2 Apr '08  
QuestionInvalid SiteMapProvider: SiteMapDataSource1 PinmemberHenrik Weimenhog23:35 2 Mar '08  
GeneralRe: Invalid SiteMapProvider: SiteMapDataSource1 PinmemberStephen Huen13:40 10 Mar '08  
GeneralHow to Pinmembercarlosfocker9:27 23 Jan '08  
GeneralBuild error PinmemberSharePointBloke14:33 17 Jan '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 25 May 2009
Editor: Deeksha Shenoy
Copyright 2006 by Stephen Huen
Everything else Copyright © CodeProject, 1999-2009
Web16 | Advertise on the Code Project