8.1.3.4 Highlighting the Current Category; Listing 8-10. Highlighting the Selected Category in the Menu.cshtml File
parent
6cc688fc9d
commit
59e5f471db
|
@ -6,14 +6,16 @@
|
|||
|
||||
@foreach (var link in Model)
|
||||
{
|
||||
@Html.RouteLink(link, new
|
||||
{
|
||||
controller = "Product",
|
||||
action = "List",
|
||||
category = link,
|
||||
page = 1
|
||||
}, new
|
||||
{
|
||||
@class = "btn btn-block btn-default btn-lg"
|
||||
})
|
||||
@Html.RouteLink(link,
|
||||
new
|
||||
{
|
||||
controller = "Product",
|
||||
action = "List",
|
||||
category = link,
|
||||
page = 1
|
||||
},
|
||||
new
|
||||
{
|
||||
@class = "btn btn-block btn-default btn-lg" + (link == ViewBag.SelectedCategory ? " btn-primary" : "")
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue