views:

596

answers:

2

What's the difference in ASP.NET MVC of RedirectToRoute and RedirectToAction? It's not clear what the difference is to me.

+3  A: 

Redirect to route looks up the route table thats defined in global.asax and redirect to action redirects you to a specified controller/action.

that's about it really

griegs
A: 

Ideally I would use RedirectToRoute for Action Links/Images and RedirectToAction in Controller Action to redirect to another Controller Action.

amit