Get information about starting a session if the session is disconnected in ASP.NET.

I have ASP.NET info and I currently have session state disabled, so I cannot accurately connect to the session start event in Global.asax. I want to get this data when someone comes to the site and when they usually start a session. What event is triggered to start a session so I can connect to it and get data?

0


source to share


1 answer


Without enabling sessions thereafter, each request is a new session. So, no matter what you like :)



If you are not discarding a cookie that acts like a session cookie, then there is no way to know if the visitor has been there before.

+3


source







All Articles