windows-nt/Source/XPSP1/NT/inetsrv/iis/img/htmla/iisess.asp

20 lines
374 B
Plaintext
Raw Normal View History

2020-09-26 03:20:57 -05:00
<%@ 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>