I have an MVC 5 web app that is set up to use Forms authentication as per this this link
It is successfully validating against LDAP (i.e., the call to Membership.ValidateUser(model.UserName, model.RememberMe)
returns true) but when it redirects to the Index action of my HomeController, it is hitting the [Authorize]
attribute and thinking that the user is not authorized for some reason, so it redirects to the login page again.
What am I missing here?