在我的控制器中,我想重定向。我有两个选择:
if(User.Identity.IsAuthenticated)
{
return RedirectToAction("Index", "Home");
}
或者
if(User.Identity.IsAuthenticated)
{
return Redirect("~/home");
}
在我的路线中,我有:
routes.MapRoute(
"spa",
"{section}/{id}",
new { controller = "Home", action = "Index", id = UrlParameter.Optional },
new { section = @"home|questions|admin" });
有人可以告诉我选择一个重定向与另一个重定向是否有任何区别。