I am sorry if the title is a little confusing. This is the problem. I have a site that has a user aspect and an admin aspect. The user and admin parts were developed as seperate projects but are nested sites in IIS.
The user aspect uses Formsauthentication and works fine when I navigate away from the root site and then back. This works as it should keeping the authentication active as long as the user hasn't closed out of the browser or logged off.
The admin aspect uses Windows authentication. The authentication is based on folder permissions defined by our Active Directory.
When you navigate from the user to the admin part it works fine and doesn't ask the user to log in after doing so the initial time. The problem is going from the admin aspect back to the user part. Every time I navigate from www.mysite.com/admin back to www.mysite.com/user the system makes the user log in every time.
I haven't been able to figure out a way for the authentication to stick. It seems like the Windows authentication overrides the Forms authentication. What do you think? Thank you for any help.