Session Object in Classic ASP — a practical guide to Classic ASP Session with clear examples you can reuse in real projects.
ASP & ASP.NET Tutorial Series (17/247). Prefer one article? Read the complete ASP.NET tutorial.
Short description
Session consumes server memory — store IDs, not huge objects.
Session
<%
Session("userId") = 42
Response.Write Session("userId")
%>