Click here to Skip to main content
Click here to Skip to main content

Breadcrumbs in ASP.NET

By , 24 Sep 2003
 
Prize winner in Competition "ASP.NET Jul 2003"

Breadcrumbs without file name appended

Breadcrumbs without file name appended

Breadcrumbs with file name appended

Breadcrumbs with file name appended

Introduction

Many popular web sites have a navigational menu near the top of each page so that the user can easily trace his or her steps back through the site. The menu usually looks something like the following (note that these links are inactive):

Home > Products > eWidge

This type of navigation has been named "Breadcrumb" navigation because it is analogous to dropping a trail of breadcrumbs while hiking into the woods, so that you can find your way back out again.

In Version 2, I have converted the script into a custom control.

This article assumes that you have a working knowledge of ASP.NET. To use this control, you must have the ability and knowledge to compile a simple C# script.

Background

I have started to try to learn ASP.NET several times now, but I keep getting sidetracked by my day job. I tackled this little project so that I could continue to learn more about ASP.NET. Since I am just getting started, I would really appreciate feedback on my code: Am I doing anything glaringly wrong? How can I make the script better? Is this code snippet useful to you?

How the code works

Assume we have a web site with the following directory structure:

/
/subdir/
/subdir/subsubdir/

Creating a breadcrumb navigation menu is as simple as extracting the directory names from the path of the current page and substituting the corresponding "friendly" names. (By "friendly" I mean a more human-readable, user-friendly form, so instead of seeing the directory name subdir, you would see the friendly name Sub Directory.) So if we were viewing the page /subdir/subsubdir/Default.aspx, our menu would look like this:

Home > Sub Directory > Sub Sub Directory > Default.aspx

This assumes, we assigned Sub Directory to subdir and Sub Sub Directory to subsubdir. It also assumes that the user has chosen to display the file name at the end of the breadcrumb trail.

During the control's load event, which is handled by the Control_Load event handler, the hyperlinks to each section are generated by appending each directory name to the web site's root URL, in succession.

Finally, after the file's path is parsed and the breadcrumbs are created, the resulting HTML is sent to the browser during the Render method via the HtmlTextWriter object.

Assigning friendly names is addressed in the next section.

Using the code

You will need to modify the directory names and "friendly" names in the HybridDictionary object named labels, located in the BreadCrumbControl constructor. You will need to change them to match the directory structure of your web site.

labels.Add ("subdir", "Sub Directory");
labels.Add ("subsubdir", "Sub Sub Directory");

Whenever you add a new directory to your web site, you must add an entry for it and then recompile the control. If you do not, the page will contain an incomplete breadcrumb trail.

If you have multiple directories with the same name (e.g., images), you only need to make one entry for that directory name.

I elected not to use Visual Studio to create this first version of the control. To compile the code, you may use a command line similar to the following:

csc /out:BreadCrumbs.dll /target:library BreadCrumbs.cs

After successful compilation, place BreadCrumbs.dll in the \bin directory of the web site's root directory.

To use the code, place the following Register directive at the top of your ASP.NET page:

<%@ Register TagPrefix="Sagara" Namespace="Sagara.BreadCrumbs" 
                                            Assembly="BreadCrumbs" %>

To display the breadcrumb control, place a custom control tag in the body of the page where you want the breadcrumbs to appear:

<Sagara:BreadCrumbControl id="breadcrumb" runat="Server" />

You may want to modify one or more of the four public properties to customize the look of the control. These properties have the following functions:

Variable Function
bool ShowFileName If true, show file name and separator (e.g.: Home > Sub Directory > Default.aspx). If false, don't show file name or separator (e.g.: Home > Sub Directory). Default value is false.
string RootName Contains the "friendly" name of the web site's root directory. Default value is Home
string RootUrl Contains the URL of the web site's root directory. Default value is /.
string Separator The HTML character used to separate the "friendly" directory names in the breadcrumb HTML. Default value is >.

For example, to change the separator character to :, you would change the control's tag to the following:

<Sagara:BreadCrumbControl id="breadcrumb" Separator=":" runat="Server" />

Alternatively, you may modify these properties in the code-behind file prior to compilation.

To-do list

  • Per user suggestion, I am investigating the possibility of incorporating data binding into this control.

Conclusion

That's it! As you can see, breadcrumb navigation is very simple in concept and implementation.

If you have any questions, please leave them on the message boards below, and I will respond as soon as possible!

History

  • 1.0.0 - 23 Aug 2003

    Initial public release.

  • 2.0.0 - 23 Sep 2003

    Converted script into a custom control.

License

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

About the Author

Jon Sagara
Software Developer (Senior) Sagara Software, Inc.
United States United States
Member
Jon graduated from Cal Poly with a B.S. Computer Engineering. He is currently building a Silverlight-based report scheduling interface for a pharmaceutical reporting company.
 
When he's not fooling around with computers or reading, he's busy spending time with his super wife, Kelly, his two boys, and their rambunctious dog, Homer.
 
Visit my blog
 
---
 
View my old profile pictures

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionMy vote of 5 !!memberSanjay_00722 Dec '11 - 1:28 
GeneralNot workingmemberNagarjuna M20 Apr '11 - 2:27 
GeneralMy vote of 5membermohanudupa14 Feb '11 - 16:55 
QuestionWhere is the User Control File?memberSatish Penta31 May '10 - 20:26 
GeneralFile or assembly name BreadCrumbs, or one of its dependencies, was not foundmemberLori Tompkins6 May '05 - 13:00 
I am not doing something correctly with the placement of the bin or dll file.
For now, this project is in inetpub and I used Visual studio 2003 to compile the project.
To keep it simple, I created a VS project called Sagat/BreadCrumbs
It's in Sagat/BreadCrumbs I compiled the code.
 
Then I have a content folder. Within content I have the two subdirectories.
I have tried keeping the Sagat/Breadcrumbs project top-level within inetpub/wwwroot, as well
 
as placing it in the content folder.
 
I am getting this error no matter what I do. Any suggestions would be appreciated.
 
Line 1: <%@ Page Language="C#" %>
Line 2: <%@ Register TagPrefix="Sagara" Namespace="Sagara.BreadCrumbs"
 
Assembly="BreadCrumbs" %>
Line 3: <html>
Line 4: <head>

 
Source File: C:\Inetpub\wwwroot\lori\Lori1.aspx Line: 2
 
Assembly Load Trace: The following information can be helpful to determine why the assembly
 
'BreadCrumbs' could not be loaded.
 

=== Pre-bind state information ===
LOG: DisplayName = BreadCrumbs
(Partial)
LOG: Appbase = file:///C:/Inetpub/wwwroot
LOG: Initial PrivatePath = bin
Calling assembly : (Unknown).
===
 
LOG: Policy not being applied to reference at this time (private, custom, partial, or
 
location-based assembly bind).
LOG: Post-policy reference: BreadCrumbs

GeneralRe: File or assembly name BreadCrumbs, or one of its dependencies, was not foundmemberJon Sagara6 May '05 - 13:34 
GeneralCan't change font sizesussAnonymous7 Feb '05 - 2:04 
GeneralRe: Can't change font sizememberJon Sagara7 Feb '05 - 4:34 
GeneralCan't display static text at end w/o it wrappingmemberjopagri649 Feb '04 - 6:09 
GeneralRe: Can't display static text at end w/o it wrappingmemberJon Sagara9 Feb '04 - 9:28 
GeneralRe: Can't display static text at end w/o it wrappingmemberjopagri649 Feb '04 - 10:10 
GeneralRe: Can't display static text at end w/o it wrappingmemberjopagri649 Feb '04 - 10:15 
QuestionWithout the ascx?sussDaniel Plomp4 Feb '04 - 22:43 
AnswerRe: Without the ascx?memberJon Sagara5 Feb '04 - 19:12 
Generalone way for breadcrumbs...membervbaddict2 Oct '03 - 5:13 
GeneralRe: one way for breadcrumbs...memberJon Sagara2 Oct '03 - 9:42 
GeneralRe: one way for breadcrumbs...membervbaddict3 Oct '03 - 6:21 
GeneralRe: one way for breadcrumbs...memberMichael Dausmann9 Nov '03 - 3:12 
GeneralRe: one way for breadcrumbs...groupBabuRao Gummadela31 Aug '09 - 21:20 
GeneralRe: one way for breadcrumbs...sussAnonymous6 Jan '04 - 4:00 
GeneralRe: one way for breadcrumbs...susskimjc015 Mar '04 - 10:29 
GeneralRequest objectmembergleizerowicz2 Oct '03 - 2:59 
GeneralRe: Request objectmemberJon Sagara2 Oct '03 - 9:42 
GeneralNot working with UrlRewritingmemberLennybacon30 Sep '03 - 8:46 
GeneralRe: Not working with UrlRewritingmemberJon Sagara30 Sep '03 - 8:52 

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.6.130516.1 | Last Updated 25 Sep 2003
Article Copyright 2003 by Jon Sagara
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid