8.1.3.4 Highlighting the Current Category; Listing 8-10. Highlighting the Selected Category in the Menu.cshtml File

chap08
Jason Zhu 2021-09-08 23:41:08 +10:00
parent 6cc688fc9d
commit 59e5f471db
1 changed files with 12 additions and 10 deletions

View File

@ -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" : "")
})
}