Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Redirect to Action is not working With ASP.NET core

I have my login view which wants to redirect to Clients page after successful login.

To do that I am using ,

[HttpPost]
        public async Task<IActionResult> Login(LoginViewModel model)
        {
            if (ModelState.IsValid)
            {
                var result = await _signInManager.PasswordSignInAsync(model.Username, model.Password, model.Rememberme, false);

                if (result.Succeeded)
                {

                    if (Request.Query.Keys.Contains("ReturnUrl"))
                    {
                        Redirect(Request.Query["ReturnUrl"].First());
                    }
                    RedirectToAction("Index", "Clients");
                }
                else
                {
                    ModelState.AddModelError("", "Failed to login");
                    return View();
                }
            }

            return View();

        }

But after successful login , I am staying in current login page and not redirected to Client Page!! If I try to navigate to Client page using browser this works fine without any issue.

like image 380
Simsons Avatar asked Jan 12 '18 07:01

Simsons


1 Answers

You need to return method result, just add return to all redirect methods:

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

Redirect methods are returnig view, to show this view You need to return it.

More info about IActionResult

like image 97
garret Avatar answered Oct 20 '22 07:10

garret