Skip to main content

Posts

Showing posts with the label 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...