2

我有一个自定义 MapRoute

context.MapRoute("participantByGender",
"Admin/Participants/{id}/{gender}",
new {
    controller = "Admin",
    action = "Participants",
    id = UrlParameter.Optional,
    gender = UrlParameter.Optional
}

我需要一个链接来指定 id 和默认性别。我有这个,它适用于选择 id,但是我将如何更改它以在链接中包含 id 和性别?

@Html.ActionLink("Participants", "Participants", new { id = item.termId })
4

1 回答 1

0

只需使用:

@Html.ActionLink("Participants", "Participants", new { id = item.termId,gender=model.property })
于 2012-12-13T19:28:43.750 回答