tags:

views:

65

answers:

1

Is the HttpSessionState.SessionID Property unique per browser process / tab?

That is, does each tab in each process have a unique Is the HttpSessionState.SessionID Property unique per browser process / tab?

+2  A: 

This is cookie based (by default), so in most browsers the cookie is shared, and you have the same session across all tabs.

So no, it's usually not unique.

Nick Craver
Thanks! Is there anything that is?
Matt
@Matt - Not that I know of, 2 browser tabs isn't different than making all requests in a single tab, from the server point of view they're indistinguishable, though someone here might have a clever trick I've never seen....SO never ceases to amaze.
Nick Craver