0
我有這樣一段代碼:未經身份驗證/使用mvc註銷時獲取路由?
public class Authenticate : ActionFilterAttribute
{
public override void OnActionExecuting(ActionExecutingContext filterContext)
{
if (!filterContext.HttpContext.User.Identity.IsAuthenticated)
{
filterContext.HttpContext.Response.Redirect("/");
}
}
}
我想知道是否有可能使它重定向到行動=「登錄」控制器=「後臺管理」的觀點?我如何將一些消息傳遞給登錄視圖,告訴你「你需要登錄才能訪問」或類似的?
/M