这是我的代码。请有人帮我拼命地需要上面提到的代码。
[HttpGet]
public ActionResult Index(string returnUrl)
{
ViewBag.ReturnUrl = returnUrl;
return View();
}
[HttpPost]
public ActionResult Index(LoginModel loginModel, string returnUrl)
{
if (ModelState.IsValid)
{
if (loginModel.Username == "user" && loginModel.Password == "password")
{
FormsAuthentication.SetAuthCookie(loginModel.Username, true);
return Redirect(returnUrl);
}
else
{
ModelState.AddModelError("", "The username or password provided is incorrect.");
}
}
ViewBag.ReturnUrl = returnUrl;
return View(loginModel);
}
答案 0 :(得分:1)
问题出在哪里:
如果你在没有returnUrl参数的情况下点击你的动作并且你将 null 传递给 Redirect()方法会发生什么? - 你得到了这个错误:)。
<强>解决方案:强>
您可以检查网址是否为空或使用默认mvc模板中包含的RedftToLocal方法(或者编写您自己的或..等等,不要将null传递给Redirect方法):< / p>
...
FormsAuthentication.SetAuthCookie(loginModel.Username, true);
// Here 'return Redirect(returnUrl);' become:
return RedirectToLocal(returnUrl);
...
private ActionResult RedirectToLocal(string returnUrl)
{
if (Url.IsLocalUrl(returnUrl))
{
return Redirect(returnUrl);
}
else
{
return RedirectToAction("Index", "Home");
}
}