create breadcrumbs dynamically in MVC 5

How to create breadcrumbs dynamically in MVC 5?

The below line of code is help you to create the bread-crumb in application using ASP.Net MVC 5. The detail as given below.


@if (ViewContext.RouteData.Values["controller"].ToString() == "Home")
{
@Html.Label(ViewContext.RouteData.Values["controller"].ToString(),   ViewContext.RouteData.Values["controller"].ToString(), ViewContext.RouteData.Values["controller"].ToString())
}

@if (ViewContext.RouteData.Values["controller"].ToString() != "Home")
{
@:Home > @Html.Label(ViewContext.RouteData.Values["controller"].ToString(), ViewContext.RouteData.Values["controller"].ToString(), ViewContext.RouteData.Values["controller"].ToString())
    if (ViewContext.RouteData.Values["action"].ToString() != "Index")
    {
 @:> @Html.Label(ViewContext.RouteData.Values["action"].ToString(), ViewContext.RouteData.Values["action"].ToString(), ViewContext.RouteData.Values["controller"].ToString())
    }
}




ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

How to create breadcrumbs dynamically in MVC 5? How to create breadcrumbs dynamically in MVC 5? Reviewed by Anil Singh on 8:30 PM Rating: (5)
www.code-sample.com/. Powered by Blogger.
^