我希望你能帮助我 :) 我正在尝试在我的 .net mvc 应用程序中执行注销功能,但我创建的链接永远不会到达正确的路线。这是我的代码:
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");
routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller = "Home", action = "Index", id = UrlParameter.Optional }
);
}
public ActionResult LogOff()
{
Session[UserSessionIdentifier] = null;
return RedirectToAction("Index", "Home");
}
@Html.ActionLink("Log off", "LogOff", "Account")
当我点击这个链接时,我的浏览器中有这个网址:
http://localhost:52041/Account/Login?ReturnUrl=%2FAccount%2FLogOff
我的错误在哪里?
达令说
www说
相关分类