Chrome won't redirect back to URL after Authentication handling
问题 For at least a couple of years, I've been using code similar to this in my MVC solutions... [Authorize] public class HomeController : Controller { [HttpGet] public ActionResult Index() { .......... Then in my Authentication code myAuthenticationProperties = new Microsoft.Owin.Security.AuthenticationProperties(); myAuthenticationProperties.AllowRefresh = true; myAuthenticationProperties.ExpiresUtc = DateTime.UtcNow.AddMinutes(60); myAuthenticationManager.SignIn(myAuthenticationProperties,