1
0
mirror of https://github.com/rudollee/LearningMVC.git synced 2025-06-08 00:16:14 +00:00
wook 5fff10e2a0 Ch. 8
SportsStore 2nd
2017-04-07 01:45:20 +09:00

14 lines
389 B
Plaintext

@model IEnumerable<string>
@Html.ActionLink("Home", "List", "Product", null,
new { @class = "btn btn-block btn-default btn-lg" })
@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" + (link == ViewBag.SelectedCategory ? " btn-primary" : "") }
)
}