I saw another solution besides using the database as the general owner of the session. I have to say in advance that using the database option is probably much better than that. But...
You can create an ASP page whose sole function is to save and retrieve ASP session state. On an ASPX page, you can make a web request to your ASP page and return session information in the header, request, or even clear the restart load. Alternatively, you can return the XML stream and make the poor web service.
In addition, you can get session state from ASP.NET by doing the opposite and creating a .NET page that will access the session information and return it.
This is not a good idea and is fraught with security problems. I saw that this is all I say. It is probably best to rely on the database and possibly pass in the session identifier.
Chris cap
source share