README.md
December 4, 2022 ยท View on GitHub
Description
This simple script yet effective little script prints all active session variables to your browser window. I use it as a troubleshooting tool when debugging my code, and I thought I'd share it with the community.
More Info
| Submitted On | |
| By | Lewis Mandrake |
| Level | Beginner |
| User Rating | 4.7 (14 globes from 3 users) |
| Compatibility | ASP (Active Server Pages) |
| Category | System Services/ Functions |
| World | ASP / VbScript |
| Archive File |
Source Code
<%@ Language=VBScript %>
<%
on error resume next
for x = 0 to session.Contents.Count
Response.Write "<nobr><pre><b>"
Response.write session.Contents.key(x) & " - </b>"
Response.write session.Contents.item(x) & "</nobr><p><br>"
next
%>