使用不同的角色登录时出现问题,使用该角色重定向角色明智页面的任何有效方法是什么?
private ActionResult RedirectToLocal(string returnUrl)
{
if (Url.IsLocalUrl(returnUrl))
{
return Redirect(returnUrl);
}
if (string.IsNullOrEmpty(returnUrl))
{
if (User.IsInRole("Admin"))
{
return RedirectToAction("Index", "Role");
}
}
return RedirectToAction("Index", "Home");
}