注销后mvc为什么会出现ActionLinks

时间:2018-01-15 10:04:43

标签: asp.net-mvc

当我退出我的用户时仍然可以看到Actionink。但是在我刷新它之后它是不可见的 请帮帮我。

 public ActionResult LogOff()
        {
            FormsAuthentication.SignOut();
            return View("Index");
        }

_Layout.cshtml

 @if (User.Identity.IsAuthenticated == true && User.IsInRole("Admin"))
                {
     @Html.ActionLink("LogOut", "LogOff", "Home", new { area = "" })
     @Html.ActionLink("Home", "Index", "Admin/AdminHome", new { area = "" })

0 个答案:

没有答案