I've got some webapps that uses IIS sessions, users would like to have multiple tabs looking at different things; but the fact they share a single session is causing issues.
My understanding is that the IIS session cookie is shared across the tabs, so I can't just delete it as it would cause the original tab to lose it's session.
I see IE11 has a file->new session menu item which could solve the issue if I could cause that to happen using javascript; is this possible? If so how? I suppose cross browser compatibility would be nice, but if it is an IE only thing that is ok.
Thanks for the help!
-Andrew