How does asp.net store session IDs by default?
-
In Cache
-
Cookies
-
In Global variable
-
URL Strings
B
Correct answer
Explanation
ASP.NET stores session IDs in cookies by default, allowing the server to identify users across HTTP requests. Option B is correct - cookies are the default storage mechanism for session IDs. Options A, C, and D represent alternative storage methods but are not the default behavior.