मुझे लगता है कि आप क्या चाहते हैं:
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).
)
यह निम्न विधि ActionLink हस्ताक्षर का उपयोग करता है:
public static string ActionLink(this HtmlHelper htmlHelper,
string linkText,
string controllerName,
string actionName,
object values,
object htmlAttributes)
ASP.NET MVC2
दो तर्कों को चारों ओर घुमाया गया है
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).
)
यह निम्न विधि ActionLink हस्ताक्षर का उपयोग करता है:
public static string ActionLink(this HtmlHelper htmlHelper,
string linkText,
string actionName,
string controllerName,
object values,
object htmlAttributes)
ASP.NET MVC3 +
तर्क MVC2 के समान क्रम में हैं, हालाँकि आईडी मान की अब आवश्यकता नहीं है:
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).
)
यह लिंक में किसी भी रूटिंग लॉजिक को हार्ड-कोडिंग से बचाता है।
<a href="/Item/Login/5">Title</a>
यह मानते हुए आपको निम्न html आउटपुट देगा:
article.Title = "Title"
article.ArticleID = 5
- आपके पास अभी भी निम्नलिखित मार्ग निर्धारित है
। ।
routes.MapRoute(
"Default", // Route name
"{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", id = "" } // Parameter defaults
);