Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do session use cookies?

This is an interview question asked a month ago....

Do session use cookies? If so,how do they do so?

Assume Session["UserId"]=1 how does this session variable uses cookies internally? If so, what will be the name of the cookie and what is the value of that cookie....

like image 787
ACP Avatar asked Apr 07 '10 03:04

ACP


People also ask

Do sessions need cookies?

Session cookies are considered strictly necessary cookies. Hence, per most data regulations, such as the GDPR, websites do not need to gain users' consent to set them on their devices.

Are sessions cookies?

Cookies are client-side files that are stored on a local computer and contain user information. Sessions are server-side files that store user information. Cookies expire after the user specified lifetime. The session ends when the user closes the browser or logs out of the program.

Does session storage use cookies?

Session storage is similar to cookies, but the data is only stored for the current session. This means that the data will be deleted when the user closes the browser. Cookies are the oldest and most well-known mechanism. They are simple to use and well-supported by browsers.

Does session Use cookie in asp net?

About SessionID and CookiesAt the beginning of a new session, the server stores the Session ID in the user's Web browser as a cookie. The SessionID cookie is similar to a locker key in that, as the user interacts with an application during a session, ASP can store information for the user in a "locker" on the server.


3 Answers

Yes, by default ASP.NET Session use cookies. As you said this is a frequented ASP.NET Interview Question , you can check this video how to answer the same and also it has other cross questions asked around this topic. But now for the long answer.

So the way it works. First thing to note is that the actual data is stored in session. Client has the cookie which stores the sessionid.Sessionid is like a ID to attach for this client whats the corresponding data stored in the session.

When client makes a call he sends the cookie (sessionid) and using that sessionid , state is restored from the session variables.

enter image description here

like image 125
Shivprasad Koirala Avatar answered Oct 19 '22 04:10

Shivprasad Koirala


Whilst the data its self is stored on the server (or in SQL if configured that way), there needs to be a way to associate session data with specific users.

By default this is done with a cookie, but you can configure cookieless in which case the unique id is stored in the URL.

From Microsoft:

ASP maintains session state by providing the client with a unique key assigned to the user when the session begins. This key is stored in an HTTP cookie that the client sends to the server on each request. The server can then read the key from the cookie and re-inflate the server session state.

http://msdn.microsoft.com/en-us/library/ms972429.aspx

like image 28
Michael Shimmins Avatar answered Oct 19 '22 05:10

Michael Shimmins


Every session will have SessionID. And Session ID is a unique number, server assigns to a specific user, during his visit(session). And defaultely, session ID is attached to a cookie and this cookie will be shared from client to server (and server to client) during its requests/responses. And server will identify session based on session id which is retrieved from cookie.

And regarding cookieless, if your browser doesnt support cookie or disabled, then cookieless will be used. Since it is Cookieless, asp.net can not create a cookie to save session id. Instead, the session id will be passed in query string...

like image 39
Suman Das Avatar answered Oct 19 '22 05:10

Suman Das