After a post to a ActionResult Method from JQuery ajax post, I return RedirectToACtion, but it is not redirecting. Why is this, and how can I get the redirect to fire?
A:
You should probably return the url to redirect to (or something so you can decide on the client the redirect url) , and make the redirect from js.
sirrocco
2009-10-03 05:58:33
A:
To redirect through an AJAX Post the below code will execute the JavaScript and redirect you to the desired page.
return JavaScript( "window.top.location.href ='" + Url.Action("Action") + "';" );
David Liddle
2009-10-03 11:52:45
A:
I disagree. It DOES redirect. And that's a pain in case you need to retrieve partial from different controller.
What browser do you use?
They may interpret 302 http status when invoking AJAX calls differently i guess.
Arnis L.
2009-10-13 09:05:50