0

我需要 url 来编辑我的 ASP.NET MVC 站点中的朋友,如下所示:

site.com/friend{x}/edit 

where {x}- 朋友的身份证。

那么,我应该如何使用我的 ActionLinks、Controller name 和 Routings 呢?

4

1 回答 1

2

假设您的控件被调用FriendController,请尝试添加自定义路由,例如:

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

然后你会像往常一样构建你的 ActionLinks 等。

于 2013-07-08T20:44:39.570 回答