vote up 12 vote down star
5

I know you could make a helper pretty easily given the data. So, if possible, please only submit answers that also include getting the data.

flag

75% accept rate

4 Answers

vote up 7 vote down check

We are using an action filter for this.

...

	public override void OnActionExecuting(ActionExecutingContext filterContext)
	{
		var controller = (Controller) filterContext.Controller;
		Breadcrumb[] breadcrumbs = _breadcrumbManager.PushBreadcrumb(_breadcrumbLinkText);
		controller.ViewData.Add(breadcrumbs);
	}

before you mention it, I too have a distaste for service location in the filter attributes - but we are left with few options. IBreadcrumbManager looks like this:

public interface IBreadcrumbManager
{
	Breadcrumb[] PushBreadcrumb(string linkText);
}

The implementation puts Breadcrumb objects into the Session. The Url is HttpContext.Current.Request.RawUrl

link|flag
Is the implementation of IBreadcrumbManager somewhere we can look at? Where does _breakcrumbLinkText come from? – flipdoubt Sep 25 at 21:11
could you show a more detailed example of this solution to breadcrumb helper? Do you have any test solution you could share maybe? I don't really get it with the interface _breadcrumbManager/IBreadcrumbManager .. – QuBaR Nov 29 at 15:40
vote up -1 vote down

How would you go about displaying the breadcrumbs in a View?

link|flag
vote up 1 vote down

@Chris: something like this:

		<% 
    	foreach (var item in ViewData.Get<Breadcrumb[]>())
			{
		%>
				<a href="<%= Server.HtmlEncode(item.Url) %>"><%= item.LinkText %></a> &raquo;
		<% 
			} 
		%>
link|flag
vote up -1 vote down

Matt,

Would you be so kind to show a bit more of your suggested implementation, it intrigues and confuses me all at the same time ;)

For example, where do you instantiate the _breadcrumbManager, and what does it do internally?

Regards, avsomeren

link|flag
this should as well be a comment to some answer, shouldn't it? – Robert Koritnik Dec 2 at 20:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.