Hi,
I have implemented web authentication in my project. It works fine with the browsers like Mozila, Chrome and Opera Safari.
However it does not work with the IE 10 and above. I did google and came to know that this is the issue in the IE itself.
I implemented the suggestions provided like using the cookieless="UseCookies" in the forms tag.
However it still does not work. Below is the section of the relevant code -
<authentication mode="Forms">
<forms cookieless="UseCookies" defaultUrl="Default.aspx" loginUrl="Login.aspx"/>
</authentication>
<authorization>
<allow users="*"/>
</authorization>
Any help will be greatly appreciated.
Thanks,
Sanjeev.