How is RedirectToRoute supposed to be used?

我们两清 提交于 2019-11-27 03:43:05

问题


I have this in my Global.asax.cs:

routes.MapRoute("BetaAccess", "beta-access", new { controller = "Beta", action = "Index" });

And this in my controller (index action on HomeController) and it definitely is getting hit:

RedirectToRoute("BetaAccess");

But still no redirection happens... it just goes to the normal home page. Am I using it wrong?

Also, I can do Response.Redirect("~/beta-access") and it goes to the beta page...


回答1:


RedirectToRoute returns a RedirectToRouteResult. Try this instead.

return RedirectToRoute("BetaAccess");



回答2:


This will redirect you.

Response.RedirectToRoute("BetaAccess");
Response.End();


来源:https://stackoverflow.com/questions/1290355/how-is-redirecttoroute-supposed-to-be-used

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!