Can anyone tell me what is happenning here? I am getting duplicated session ID's across 2 seperate machines, 2 different browsers in a shopping cart website?
I've gone so far as generating a new session id with a 300 character random string, and still they get duplicated
This is the new code... just take out the SyncLock stuff for the old code:
Dim _key As String = String.Empty
SyncLock _locker
_key = Guid.NewGuid().ToString()
Session("Identifier") = Validations.GeneratePassword(150, 300)
Session("SessionID") = _key
Session("SiteID") = "F2630237-E355-4C8A-947E-BBAC97ECA550"
Session("HomePage") = 13
End SyncLock
yes I know Session("SessionID") is not the session ID, however, we used to use Session.SessionID for the "Identifier", and it was getting duplicated
