Asp.Net MVC 2 Creating BreadCrumbs

I am using ASP.NET MVC 2 in my project. I want to create bread crumbs for our categories. But I want to bring bread crumbs programmatically. How can I make this work in User Control?

+4
source share
2 answers

There might be a nuget package for an ASP.NET MVC site map:

http://nuget.org/List/Packages/MvcSiteMapProvider

He also refers to this SO question:

ASP.NET MVC - Simple Breadcrumbs (SiteMap)

Hope this helps.

+2
source

We use the ASP.NET MVC Site Map Project to create our breadcrumbs. The project website has a section for creating dynamic site maps .

0
source

Source: https://habr.com/ru/post/1345124/


All Articles