2025-04-27 07:49:33 -04:00

20 lines
393 B
Plaintext

<%@ LANGUAGE = VBScript %>
<% Option Explicit %>
<!-- #include file="directives.inc" -->
<%
Dim key
' generically sets Session variables from the QueryString...
For Each key In Request.QueryString
Response.write "KEY:" & key & "<BR>"
Response.write "VAL:" & Request.QueryString(key) & "<P>"
Session(key)=Request.QueryString(key)
Next
%>
<HTML>
<BODY>
</BODY>
</HTML>