Ich denke, was Sie wollen, ist Folgendes:
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).
)
Dies verwendet die folgende ActionLink-Signaturmethode:
public static string ActionLink(this HtmlHelper htmlHelper,
string linkText,
string controllerName,
string actionName,
object values,
object htmlAttributes)
ASP.NET MVC2
Zwei Argumente wurden vertauscht
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).
)
Dies verwendet die folgende ActionLink-Signaturmethode:
public static string ActionLink(this HtmlHelper htmlHelper,
string linkText,
string actionName,
string controllerName,
object values,
object htmlAttributes)
ASP.NET MVC3 +
Argumente befinden sich in derselben Reihenfolge wie MVC2, der ID-Wert wird jedoch nicht mehr benötigt:
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).
)
Dadurch wird vermieden, dass Routing-Logik in die Verbindung hartcodiert wird.
<a href="/Item/Login/5">Title</a>
Dies gibt Ihnen die folgende HTML-Ausgabe, vorausgesetzt:
article.Title = "Title"
article.ArticleID = 5
- Sie haben noch die folgende Route definiert
. .
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);