Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have this route defined:

routes.MapRoute(
                   "Details", // Route name
                   "{home}/{details}/{id}/{name}", // URL with parameters
                   new
                   {
                       controller = "Home",
                       action = "Details",
                       id = UrlParameter.Optional,
                       name = UrlParameter.Optional
                   } // Parameter defaults
               );

The ActionLink:

 @Html.ActionLink("Show Details", "Details", "MyController", new { id = 1, name ="a" })

The actionlink results in /Home/Details/1?name=a I am after /Home/List/1/a

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
615 views
Welcome To Ask or Share your Answers For Others

1 Answer

Your route definition should be like this:

routes.MapRoute(
    "Details", // Route name
    "{controller}/{action}/{id}/{name}", // URL with parameters
    new
    {
        controller = "Home",
        action = "Details",
        id = UrlParameter.Optional,
        name = UrlParameter.Optional
    } // Parameter defaults
);

Also you should use the proper overload:

@Html.ActionLink(
    "Show Details",             // linkText
    "Details",                  // action
    "MyController",             // controller
    new { id = 1, name = "a" }, // routeValues
    null                        // htmlAttributes
)

Notice the null at the end.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...