I want to create new Asp.Net_SessionId whenever user LoggedIn to my system. How can i create it and if i cannot create it then what may be the approach to update Asp.Net_SessionId value, I means should i save Guid.NewGuid() in Asp.Net_SessionId to create a new value of Asp.Net_SessionId
I want to create new Asp.Net_SessionId whenever user LoggedIn to my system. How can
Share
To override the session ID, you have to create a custom session provider, not an easy task and not something I’d recommend getting into. Why create the user a session ID? If you want to give them a unique ID, then create your own guid identifier and store it in session, and refer to this for your own personal needs…
HTH.