我有以下登錄動作 [HttpPost]如何在MVC3中傳遞返回URL?
public ActionResult LogOn(LogOnModel user, string returnUrl)
{
if (!String.IsNullOrEmpty(returnUrl))
{
return Redirect(returnUrl);
}
else
{
return RedirectToAction("Index", "Home");
}
}
在這我RETURNURL爲空.. 任何機構可以告訴我。爲什麼我的返回URL爲null
不知道,因爲你不顯示你的HTML標記調用它。 –