我在這裏有這些代碼的登錄POST和GET不能重定向角色的看法
[Authorize]
public class AccountController : Controller
{
//
// GET: /Account/Login
[AllowAnonymous]
public ActionResult Login(string returnUrl)
{
ViewBag.ReturnUrl = returnUrl;
return View();
}
//
// POST: /Account/Login
[HttpPost]
[AllowAnonymous]
[ValidateAntiForgeryToken]
public ActionResult Login(LoginModel model, string returnUrl)
{
if (ModelState.IsValid && WebSecurity.Login(model.UserName, model.Password, persistCookie: model.RememberMe))
{
return RedirectToLocal(returnUrl);
}
if (User.IsInRole("Owner"))
{
return RedirectToAction("Index", "AdminOnly");
}
// If we got this far, something failed, redisplay form
ModelState.AddModelError("", "The user name or password provided is incorrect.");
return View(model);
}
我的問題,但是,當我嘗試登錄管理員帳戶,我得到重定向到〜/共享/佈局。我該怎麼辦?提前致謝!
如果你的第一個'if'語句有效,你會重定向你。你永遠不會到達第二個「if」(假設用戶是「所有者」,你的期望是如何) – 2015-02-07 05:40:31