I have a website which runs under two different subdomains, let's call them
foo.mydomain.com and bar.mydomain.com
I'd like to have users share their login session between these two domains. That's why I set this in web.xml
<authentication mode="Forms">
<forms timeout="50000000" loginUrl="~/Login/Login.aspx?redirect=true" domain="mydomain.com"/>
</authentication>
Basically this works well, but with exception: IE with protected mode On. In this case the logout does not work anymore. With protected mode off everything works normally.
IIS 7 / ASP.NET 3.5