Author: ASP.NET | Posted on: 4/17/2009 5:59:58 AM | Views : 1084

One of the common problems reported with tabbed browsing in Internet Explorer is that the session state is shared between the tabs. Sample scenario below:- 1. User A opens an IE instance and logs into a website where a session is created. 2. User A opens another tab and tries to access the same website. Without logging in, the user is already inside the session. 3. In this case, its clear that the session is shared between the tabs. Problems with this behavior User retrieves a particular record in both the IE Tabs. On one tab, the user deletes the particular record. Parallely on the other tab, user tries to modify the record. There will be a data instability and would throw error. This behavior has been complained a lot. However, imagine if...(read more) ...

Go to the complete details ...