asp.net-mvc – 具有多个参数的ActionLink

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 具有多个参数的ActionLink前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想使用我的ActionLink创建一个像/?name = Macbeth& year = 2011的URL,我已经尝试过这样:
<%= Html.ActionLink("View Details","Details","Performances",new { name = item.show },new { year = item.year })%>

但它不工作。我如何做到这一点?

解决方法

您使用的重载使年值在链接的html属性中结束(检查渲染源)。

过载签名看起来像这样:

MvcHtmlString HtmlHelper.ActionLink(
    string linkText,string actionName,string controllerName,object routeValues,object htmlAttributes
)

你需要把你的路由值放入RouteValues字典,像这样:

Html.ActionLink(
    "View Details",new { name = item.show,year = item.year },null
)
原文链接:https://www.f2er.com/aspnet/254012.html

猜你在找的asp.Net相关文章