I have an ASP.NET 2.0 application that is using the Forms Authentication. When a user logs into the application a session object is created as well as a cookie and everything is fine. The application allows a user to pick between multiple databases to work from depending on their privileges. The problem is if the user wants to open another tab in IE to log in and work in a different database along side the first tab they logged into it doesn't work. It just sees the previous tab's session and loads the new tab directly into the previous tab's database, bypassing the login screen.
Is there a way to uniquely separate sessions so that I could have users log into the application in the same browser (different tabs) and have multiple sessions connected to the correct tab?
Thanks Chris