How is RedirectToRoute supposed to be used?

42.1k Views Asked by At

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...

2

There are 2 best solutions below

1
On BEST ANSWER

RedirectToRoute returns a RedirectToRouteResult. Try this instead.

return RedirectToRoute("BetaAccess");
1
On

This will redirect you.

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