-
方式一:
在控制器的方法内部结尾使用 return View(); 来打开与方法同名的页面,如:
public ActionResult Login()
{
return View();
}
该写法打开 Login 页面。
-
方式二:
可以添加参数来显式地指定要跳转的页面,如:
return View("Register");
该写法跳转到系统控制器下的 Register 页面。
-
方式三:
使用 RedirectToAction 方法,跳转到指定的控制器的指定页面,如:
public async Task<IActionResult> Logout()
{
await HttpContext.SignOutAsync("Cookies");
return RedirectToAction("Index", "Home");
}
该写法跳转到 Home 控制器的 Index 页面。
-
方式四:
使用 Redirect 方法,如:
return Redirect("/Home/Index"); //临时重定向
return RedirectPermanent("/Home/Index"); //永久重定向
效果和方式三一样。
-
方式五:
使用 RedirectToRoute 方法:
return RedirectToRoute(new { Controller = "Home", Action = "Index", ID = "1" });
.net core mvc 控制器中页面跳转
技术拾荒者2024-11-06 11:54
相关推荐
青云计划21 小时前
知光项目知文发布模块Victor35621 小时前
MongoDB(9)什么是MongoDB的副本集(Replica Set)?Victor3561 天前
MongoDB(8)什么是聚合(Aggregation)?yeyeye1111 天前
Spring Cloud Data Flow 简介Tony Bai1 天前
告别 Flaky Tests:Go 官方拟引入 testing/nettest,重塑内存网络测试标准+VX:Fegn08951 天前
计算机毕业设计|基于springboot + vue鲜花商城系统(源码+数据库+文档)程序猿阿伟1 天前
《GraphQL批处理与全局缓存共享的底层逻辑》小小张说故事1 天前
SQLAlchemy 技术入门指南识君啊1 天前
SpringBoot 事务管理解析 - @Transactional 的正确用法与常见坑游乐码1 天前
c#变长关键字和参数默认值