vote up 2 vote down star

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

flag

72% accept rate

1 Answer

vote up 6 vote down check

RedirectToRoute returns a RedirectToRouteResult. Try this instead.

return RedirectToRoute("BetaAccess");
link|flag
3  
Oh, I'm a 'tard. Thanks. – Max Schmeling Aug 17 at 20:58
I have to up-vote a comment that makes me laugh. (no worries, that's an easy mistake to make. :) – Chris Missal Aug 18 at 0:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.