When we login into two different applications (e.g. Test1, Test2) with a different user (e.g. User1, User2) hosted on the same server using the following scenarioenter code here
- User 1st logs the one application in one tab
- User 2nd logs in the other application in a separate tab.
- User 1st try to navigate another page then, automatically user 1st got logged out.
The problem occurs when you open a new browser tab because the session is the same so any changes you make in the new tab is going to impact on other tabs and when to click on any link of the first tab it will redirect to login page. So, we just want to know that is this default behaviour or we have to do some setting in IIS from your side?
We are using form authentication and for that, we enabled Anonymous and Form authentication in IIS. Also, we have set [Anonymous] attribute to Login action.