internet explorer - Weird login problem on asp.net web application in IE -


in web application when try login in mozilla or chrome, takes me correct url im redirecting after authentication, im using form-authentication.

but when try in ie, puts intended url in query string return , gives me login prompt again.

does 1 have ideas why might , how can fixed.

to redirect im using

formsauthentication.setauthcookie(username, false);                     response.redirect(redirecturl); 

this login working in ie before put code allow access external application, involves creation of new aspnet user if required. can problem.

its fixed simple matter of clearing browser data. :d

cookies , cache removed.

i had name cookie ....lol......will never use un-named cookies ever :d


Comments

Popular posts from this blog

unicode - Are email addresses allowed to contain non-alphanumeric characters? -

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c++ - Convert big endian to little endian when reading from a binary file -