カスタムの@Html.ActionLinkを使用したい
私は次のコードを使おうとしています:-
public static class LinkExtensions
{
public static MvcHtmlString MyActionLink(
this HtmlHelper htmlHelper,
string linkText,
string action,
string controller)
{
var currentAction = htmlHelper.ViewContext.RouteData.GetRequiredString("action");
var currentController = mlHelper.ViewContext.RouteData.GetRequiredString("controller");
if (action == currentAction && controller == currentController)
{
var anchor = new TagBuilder("a");
anchor.Attributes["href"] = "#";
anchor.AddCssClass("currentPageCSS");
anchor.SetInnerText(linkText);
return MvcHtmlString.Create(anchor.ToString());
}
return htmlHelper.ActionLink(linkText, action, controller);
}
}
現在のページを認識しているカスタムActionLinkヘルパーから
しかし、私は得ています
System.Web.Mvc.HtmlHelper'には'ActionLink'の定義が含まれておらず、タイプ'System.Web.Mvc.HtmlHelper'の最初の引数を受け入れる拡張メソッド'ActionLink'が見つかりませんでした(usingディレクティブまたはアセンブリリファレンス?