In a Action, I am calling
RedirectToAction("login", new { test = "1" });
And the page doesn't seem to be redirecting. The action "login" is in the same controller.
What could the issue be?
|
In a Action, I am calling
And the page doesn't seem to be redirecting. The action "login" is in the same controller. What could the issue be? |
|||||
|
|
RedirectToAction(... will not work if you are using AJAX form. ajax request simply ignore the redirect call |
|||
|
|