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
2010-01-02 19:01:25
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
2010-01-02 19:11:50