我有以下登录操作 [HttpPost]
public ActionResult LogOn(LogOnModel user, string returnUrl)
{
if (!String.IsNullOrEmpty(returnUrl))
{
return Redirect(returnUrl);
}
else
{
return RedirectToAction("Index", "Home");
}
}
其中我的 returnUrl 为空。任何人都可以告诉我。为什么我的返回 URL 为空