I have this website on myWebsite.com (MVC4).
Then I have this other website on en.myWebsite.com.
The MVC4 website has a fairly typical .NET membership, and in there I have this /Header/Index/ controller / action that generate the header, in different ways if the user is logged on. This works.
Both websites have <httpCookies domain=".myWebsite.com"></httpCookies>
in their web.configs.
From my subdomain, I jquery.load the "myWebsite.com/Header/" into a div in my page.
My problem is that when I check "User.Identity.IsAuthenticated", I get false even though I should be authentified.
What should I do to get this to work properly? Thanks!