Multiple choice technology programming languages

How does asp.net store session IDs by default?

  1. In Cache

  2. Cookies

  3. In Global variable

  4. URL Strings

Reveal answer Fill a bubble to check yourself
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.