ActionLink with multiple parameters

前端 未结 3 1285
猫巷女王i
猫巷女王i 2020-12-14 00:51

I want to create a URL like /?name=Macbeth&year=2011 with my ActionLink which I have tried doing like so:

<%= Html.ActionLi         


        
3条回答
  •  盖世英雄少女心
    2020-12-14 01:31

    The overload you are using makes the year value end up in the html attributes of the link (check your rendered source).

    The overload signature looks like this:

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

    You need to put both your route values in to the RouteValues dictionary like this:

    Html.ActionLink(
        "View Details", 
        "Details", 
        "Performances", 
        new { name = item.show, year = item.year }, 
        null
    )
    

提交回复
热议问题