Tôi nghĩ những gì bạn muốn là đây:
ASP.NET MVC1
Html.ActionLink(article.Title,
"Login", // <-- Controller Name.
"Item", // <-- ActionMethod
new { id = article.ArticleID }, // <-- Route arguments.
null // <-- htmlArguments .. which are none. You need this value
// otherwise you call the WRONG method ...
// (refer to comments, below).
)
Điều này sử dụng phương pháp chữ ký ActionLink sau đây:
public static string ActionLink(this HtmlHelper htmlHelper,
string linkText,
string controllerName,
string actionName,
object values,
object htmlAttributes)
ASP.NET MVC2
hai đối số đã được chuyển đổi xung quanh
Html.ActionLink(article.Title,
"Item", // <-- ActionMethod
"Login", // <-- Controller Name.
new { id = article.ArticleID }, // <-- Route arguments.
null // <-- htmlArguments .. which are none. You need this value
// otherwise you call the WRONG method ...
// (refer to comments, below).
)
Điều này sử dụng phương pháp chữ ký ActionLink sau đây:
public static string ActionLink(this HtmlHelper htmlHelper,
string linkText,
string actionName,
string controllerName,
object values,
object htmlAttributes)
ASP.NET MVC3 +
các đối số theo cùng thứ tự với MVC2, tuy nhiên giá trị id không còn bắt buộc:
Html.ActionLink(article.Title,
"Item", // <-- ActionMethod
"Login", // <-- Controller Name.
new { article.ArticleID }, // <-- Route arguments.
null // <-- htmlArguments .. which are none. You need this value
// otherwise you call the WRONG method ...
// (refer to comments, below).
)
Điều này tránh mã hóa cứng bất kỳ logic định tuyến vào liên kết.
<a href="/Item/Login/5">Title</a>
Điều này sẽ cung cấp cho bạn đầu ra html sau, giả sử:
article.Title = "Title"
article.ArticleID = 5
- bạn vẫn có tuyến đường sau được xác định
. .
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);