views:

59

answers:

1

It doesn't return a view. In fact, the Action still needs to return a view after calling this ... so what's going on?

+1  A: 

It's exactly what it says - a redirect. This is a response code sent to the browser to ask it to request another URL. That's the point at which a view is requested in MVC, or a web page in straight ASP.NET.

David M
But what about the Action's return value? If the call to Redirect creates a redirect, what do I display in the meantime? A "redirect, please wait" page? Hmm, that makes sense.
ripper234