home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1998 February
/
CHIP_2_98.iso
/
software
/
pelne
/
optionp
/
iis4_03.cab
/
iisess.asp
< prev
next >
Wrap
Text File
|
1997-11-12
|
378b
|
20 lines
<%@ LANGUAGE=VBScript %>
<% Option Explicit %>
<% Response.Expires = 0 %>
<%
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>