What is the length of the ASP classic session.sessionid property?

It's a simple question ... but I've spent some time poking around the internet to no avail.

In ASP classic (which I'm unfortunately stuck with), I need to know the range of possible values ​​returned when getting session.sessionid. I can print it out just fine, but with no better idea of ​​how it works (beyond the obvious gain), I don't trust testing to determine it.

Any information / resources / leaders whatsoever would be appreciated. Thank!

+3


source to share


1 answer


Session IDs are generated on the server. This way session.sessionid

gives you a server generated id.

session.sessionid

always gives you a series of 9 digits . As you can read in the sources below, the session ID is always generated the same (32 bit integer that is encrypted).



Check out this resource. the linked document in the article is interesting.

And one more article .

+3


source







All Articles