diff --git a/src/Microsoft.AspNet.Mvc.Core/Rendering/HtmlHelperLinkExtensions.cs b/src/Microsoft.AspNet.Mvc.Core/Rendering/HtmlHelperLinkExtensions.cs index 301dab4c91..ffcb276858 100644 --- a/src/Microsoft.AspNet.Mvc.Core/Rendering/HtmlHelperLinkExtensions.cs +++ b/src/Microsoft.AspNet.Mvc.Core/Rendering/HtmlHelperLinkExtensions.cs @@ -71,6 +71,24 @@ namespace Microsoft.AspNet.Mvc.Rendering htmlAttributes: null); } + public static HtmlString ActionLink( + [NotNull] this IHtmlHelper helper, + [NotNull] string linkText, + string actionName, + string controllerName, + object routeValues) + { + return helper.ActionLink( + linkText, + actionName, + controllerName, + protocol: null, + hostname: null, + fragment: null, + routeValues: routeValues, + htmlAttributes: null); + } + public static HtmlString ActionLink( [NotNull] this IHtmlHelper helper, [NotNull] string linkText,