I'm little-bit confused about session management in MVC4.
Lets say, I entered username and password and clicked on Login button. Then on server side, I got SessionId from HttpContext.Current.Session. And then I am validating that user credentials against database. If user is valid, then Adding SessionId, userName and uiserId in Session.
Lets say, next time request is came from same machine and same browser, I got same SessionId and then allowing that user to access other information.
Now I have following questions:
- How server come to know that request is came from same browser and from same machine?
- I found that, SessionId is different for different browser but it is same for same browser on different machine, so If I logged in from machine1 and with google chrome, then is it possible to use same session for different browser?(means session will be available for different machine with same browser. Is it possible?)
- How server understand that request is for same user, who is logged in?
- In asp.net session is maintained by viewState, but view state is not used in MVC, then what is used in MVC?
First I suggest to read this Wikipedia article about HTTP sessions. The answers on your question:
SessionId
in either a cookie or the query string.SessionId
which was sent by the client in question 1. The server maintains for example a key value data object so it can load the right data for the givenSessionId
.