在其文件夹之外的位置使用控制器时,有必要创建指向所需方法的链接。对于 Html.ActionLink 方法,需要以下参数:
ASP.NET MVC1:
public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string controllerName, string actionName, object values, object htmlAttributes)
ASP 。网MVC2:
public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, object values, object htmlAttributes)
ASP.NET MVC3 :
public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, object values, object htmlAttributes)
考虑以下场景:
public class ItemController:Controller { public ActionResult Login(int id) { return View("Hi", id); } }
从外部页面创建到 Login 方法的链接Item 文件夹,使用以下代码:
以上是如何在 ASP.NET MVC 中的文件夹之外创建指向控制器的操作链接?的详细内容。更多信息请关注PHP中文网其他相关文章!