We are migrating at work to Internet Explorer 8 and we are confronted to the new "feature" the so called "Session Merging", all new windows from IE8 share the same Session Cookie. That's creating some problems because we have a Web based system that must permit work in parallel in several windows, but each must have it's own Session (mostly Session variables used in legacy code).
Now, I remember when I was developing a feature for this system that involved opening a new window from an existing one using javascript to have seen something in the MSDN documentation about a new parameter that you can pass in IE8 to get a new session. I have been searching the MSDN documentation for 2 days now and I can't find that I have seen more or less a year ago.
Does anybody knows how I can't say to IE8 it s开发者_StackOverflow中文版hould use a new session for the window in Jscript or VBscript?
Regards
Vlax
This might or might not help, I am unable to test at the moment, but if you add the -nomerge switch the to the short cut you use when you first open the web application, does this prevent subsequent new windows to spawn without sharing the session?
精彩评论