I have a parent site using Forms authentication. I need to have a nested subsite/application be able to determine if the user is authenticated on the parent site, but when the subsite tries to read User.Identity.IsAuthenticated it is false, and any Session variable that is set on the parent site is not available in the subsite.
Both sites are set to use the parent site's application pool. I have already set the domain attributes of both the forms and httpCookies settings in the parent site to the same domain, but no luck.
Does the subsite need something added to its web.config to be able to detect the parent site authenticated user?