Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RedirectToAction doesnot change the browser URL

I was trying to redirect from the Account controller (Account/Login) to User/Index by doing below syntax.

return RedirectToAction("Index", "User");

it shows up the correct view but the URL still persist as Account/Login. Can anyone suggest how can i achieve the same. I have tried some of the searches from google but none of them works for me.

like image 954
Pradeep Avatar asked Sep 10 '12 14:09

Pradeep


1 Answers

It's an issue caused by jQuery-mobile. By default, jQM will make forms use ajax calls, as this is how page navigation is performed in the framework. AJAX navigation is explained in more detail here.

The solution is to add data-ajax="false" to the form tag used for the initial server call.

So your form would look like this:

@using (Html.BeginForm("Login", "Account", FormMethod.Post, new { data_ajax = "false" }))
like image 56
Alejo Avatar answered Oct 20 '22 01:10

Alejo