Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
374 B

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