Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the size of an ASP.NET 3.5 session ID?

Is it 32 bit, or 64 bit or 128 bit or bigger?

like image 530
jao Avatar asked May 14 '09 06:05

jao


1 Answers

It's neither int nor guid; from the MSDN help file...

The ASP.NET session identifier is a randomly generated number encoded into a 24-character string consisting of lowercase characters from a to z and numbers from 0 to 5.

like image 120
john Avatar answered Sep 18 '22 08:09

john