I'm using ASP.NET MVC 2 in my project. I want to create bread crumbs for our categories. But I want to bring the bread crumb programatically. How can I make this work in a User Control ?
2 Answers
There's a nuget package for an ASP.NET MVC site map that may be of help:
http://nuget.org/List/Packages/MvcSiteMapProvider
It's also referenced in this SO question:
ASP.NET MVC - Simple Breadcrumbs (SiteMap)
Hope this helps.
Comments
We're using the ASP.NET MVC Site Map Project to generate our breadcrumbs. There is a section on how to generate dynamic site maps on the project website.