mirror of https://github.com/tongzx/nt5src
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.
20 lines
374 B
20 lines
374 B
<%@ 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>
|