我希望你能帮助我 :) 我正在尝试在我的 .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我的错误在哪里?
- 2 回答
- 0 关注
- 153 浏览
添加回答
举报
0/150
提交
取消