we have an asp.net application that uses a session (in-proc) for one user on different pages, now they want to keep the data (for example, the shopping cart) more persistent, even if they leave the web application, then close the browser, in The next time they use the same identifier, they want to return data, any solution in ASP.NET?
If we save the session in the sql server, which, in my opinion, is an option for Microsoft, but I'm not sure if it works even after the user leaves the application or closes the browser
source
share