ByDefault ASP.Net SessionID is stored in Cookies - ASP.NET Introduction
Q. ByDefault ASP.Net SessionID is stored in _________.- Published on 19 Oct 15a. Application
b. Session
c. Cookies
d. ViewState
ANSWER: Cookies
ByDefault ASP.Net SessionID is stored in cookies.
SessionID enables you to retrieve the unique session identifier of a particular user.
By default, Session state depends on cookies. SessionID is stored in a cookie named ASP.NET_SessionId to identity a user. If a user disables cookies in the browser, then Session state doesn’t work. The ASP.NET_SessionId cookie is used to associate the correct data with the correct user.