Having the below issue. I'm assuming it's based on my web.config settings, but not sure best way to handle .
- User1 logs in with no problem
- User1 logs out manually using log out link - works OK
- User2 logs in from same browser afterwards - works OK
- User2 clicks full url hyperlink (i.e. http://www.mydnnsite.com/page.aspx), but once the page navigates, he shows being logged in as User 1 now.
My current web config is below. Not sure how all 3 pieces interact with eachother or dnn. Ultimately I'd like people to stay logged in for "a long time" UNLESS they manually log out. And if they do log out, obviously I would like the next user who logs in to not somehow have their session get confused with the original user.
-------------- web.config
<authentication mode="Forms">
<forms name=".DOTNETNUKE" protection="All" timeout="20000" slidingExpiration="true" cookieless="AutoDetect" />
AND
<anonymousIdentification enabled="true" cookieName=".ASPXANONYMOUS" cookieTimeout="20000" cookiePath="/" cookieRequireSSL="false" cookieSlidingExpiration="true" cookieProtection="None" domain="" />
<membership defaultProvider="AspNetSqlMembershipProvider" userIsOnlineTimeWindow="15">