asp.net-mvc – 重定向到mvc中的actionresult但不想通过返回视图转到页面()

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – 重定向到mvc中的actionresult但不想通过返回视图转到页面()前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想要一个设施,如果用户登录然后转到home / index

我不想用

return view('~/views/home/index');

我想将它重定向到我的web应用程序的home controller的actionresult索引(在asp.net mvc中)

如何在没有返回视图的情况下做到这一点();我想重定向他.

public actionresult login

if(userlogin)
{
// goes to index page ? what i do here then user goes to index page of home controller
}
else
{
return view()
}

解决方法

你可以重定向
return RedirectToAction("index");

如果操作在不同的控制器上,也指定控制器名称

return RedirectToAction("index","home");
原文链接:https://www.f2er.com/aspnet/249207.html

猜你在找的asp.Net相关文章