home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 February / CHIP_2_98.iso / software / pelne / optionp / iis4_03.cab / iisess.asp < prev    next >
Text File  |  1997-11-12  |  378b  |  20 lines

  1. <%@ LANGUAGE=VBScript %>
  2. <% Option Explicit %>
  3. <% Response.Expires = 0 %>
  4.  
  5. <% 
  6. Dim key
  7.  
  8. ' generically sets Session variables from the QueryString...
  9.  
  10. For Each key In Request.QueryString
  11.     Response.write "KEY:" & key & "<BR>"
  12.     Response.write "VAL:" & Request.QueryString(key) & "<P>"
  13.     Session(key)=Request.QueryString(key)
  14. Next
  15. %>
  16.  
  17. <HTML>
  18. <BODY>
  19. </BODY>
  20. </HTML>