On win 7 and win 8, my login has stopped working in IE 10 only. The rest of the browsers are behaving normal. IE 9 on win 7 is working ok also.
This is what we have on the mvc section of the site. The ajax confirmation goes back to the page and it then redirects to the dashboard page. Since dashboard page is behind login, the user gets redirected back to the login page.
public void SignInUser(UserInfo user)
{
FormsAuthentication.SignOut();
SessionService.AbandonSession();
FormsAuthentication.SetAuthCookie(user.UserId, false);
//here we put the user in session
//here we log hit
}
and this is what we have on the Kentico CMS side, classic asp.net. Here it is a webservice request, login code executes and then confirmation gets back to the page which in turn redirects to the dashboard page. The same thing happens here too. User gets redirected back to the login page.
FormsAuthentication.SignOut();
FormsAuthentication.SetAuthCookie(user.UserId, false);
Has any one else seen such behavior om their website?