public ActionResult Logout() { ContextService.Close(); FormsAuthentication.SignOut(); return RedirectToAction("Index", "Home"); }主要是实现退出登录,然后跳转,但是就是跳转不到那个页面,也没有报错。不知道为什么,求助
2 回答
ibeautiful
TA贡献1993条经验 获得超5个赞
return RedirectToAction( "Index", new RouteValueDictionary( new { controller = "Index", action = "Home" } ) );
- 2 回答
- 0 关注
- 2046 浏览
添加回答
举报
0/150
提交
取消