Multi Tab Session Management
The last two major projects I have worked on in the last two years, have been major business application written in asp.net. Since the upgrade to the shinny new IE7, user have been able to open sites in multiple tabs, and since about 2 weeks into mass adoption on IE7 and the understanding of how tabs work, everyone has instantaneously become dependant on running in multiple tab . Here lieth the problem. The applications are all written using the same framework, which relies heavily on session state to store page state information. Without session state, the application craps itself, literally. The design of IE7 tab (and before you go complaining about crappy MS, firefox is designed the same way) any additional tabs opened in the same window share the same session. This equates to vital session information such are the current record id to be overwritten by the new tabs selection. Major boo boo for application state. to make things worse, the framework requires the same session inform...