Search code examples
httpasp-classicrequesthttpwebrequesthttpcontext

What is the equivalent to ASP.NET's HttpContext.Current.Items in Classic ASP?


HttpContext.Current.Items is a store that has a life span of the HTTP request.

I'd like to know the Classic ASP equivalent of this.


Solution

  • There is no equivalent of that in Classic ASP. You only have objects like Request, Response, Session, Application, Server for that purpose.