我有一个自定义 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 })