あなたのお返事ありがとうございました。mvc HtmlExtensionメソッドのユーザーIDの詳細にアクセスするには?
多くのアクションリンクを多くのページに表示する必要があります。ユーザーロール間の認可があるので、ビューに他のコードを記述していましたが、htmlHelper拡張メソッドに行く理由を短くしたいと思います。
public static MvcHtmlString ValidationActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, string AllowedRole)
{
if (User.IsInRole(AllowedRole))// its given me error The User dosent exist in current context Am i missing some namespace or what ?
{
htmlHelper.ActionLink(linkText, actionName);
}
}
おかげでたくさんの感謝を働いてます。.. –