ericnet
Programmer
- Mar 29, 2006
- 106
I have an ASP.NET web app where I track user activity using cookies, and I store that activity in the database. To do so, I give two cookies to client browser, user_id (permanent cookie) and session_id (in-memory cookie), and with both cookies I handle all the necessary work to store all the information I need into the database.
But now I need to handle the situation when the user has the cookies of his/her browser disabled, so that I can continue maintain user session and storing session activity into de database. Which are the best alternatives I have to accomplish that task?
Thank you
But now I need to handle the situation when the user has the cookies of his/her browser disabled, so that I can continue maintain user session and storing session activity into de database. Which are the best alternatives I have to accomplish that task?
Thank you