Login control doesnt work in Internet Explorer
Posted
by
kamiar3001
on Stack Overflow
See other posts from Stack Overflow
or by kamiar3001
Published on 2011-04-06T08:04:32Z
Indexed on
2012/11/04
5:01 UTC
Read the original article
Hit count: 236
I use asp.net cookie in my application here is my web config :
<authentication mode="Forms">
<forms path="/"
defaultUrl="Default.aspx"
loginUrl="Login.aspx"
name=".ASPXAUTH"
slidingExpiration="true"
timeout="3000"
domain="www.mysite.com"
cookieless="UseDeviceProfile"/>
</authentication>
it works fine but I have a problem, after some days when a user has been working with the site application, suddenly my login control didn't work. I found out it will work after deleting temporary files.
Edit : Please pay attention to domain when User request www.mysite.com every thing is okay but without "www" login doesn't work. in firefox they are working very good. this is IE problem.
How I can solve this ?
© Stack Overflow or respective owner