How is RedirectToRoute supposed to be used?

Max Schmeling picture Max Schmeling · Aug 17, 2009 · Viewed 41.9k times · Source

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

Answer

Joel picture Joel · Aug 17, 2009

RedirectToRoute returns a RedirectToRouteResult. Try this instead.

return RedirectToRoute("BetaAccess");