Relatively simple question regarding the value of session ID – Session ID is tied to a specific instance of the browser, correct (instance meaning window)? So I start with an empty desktop (WinXP or Win7 or whatever client O/S). I open an IE browser window and request a web page from an ASP.NET website. I then open a second IE browser window and request the same web page from the same ASP.NET website. (1) I assume there will be 2 different session IDs, one for each of the two IE browser windows, correct? Then, I open an additional tab within one of the IE browser windows. (2) Will that additional tab have the same session ID as the browser window, or will it have a third unique session ID? I know I could do a little testing to look at this but I need to answer a boss’s question right away LOL – so I figured someone could probably just answer this question off the top of their head. TIA!
Relatively simple question regarding the value of session ID – Session ID is tied
Share
When you open a new tab, they share the same session. If you want new session at the same time, you should open the site in a different browser.