[thelist] ASP request.querystring(*) ?

Rob Smith rob.smith at thermon.com
Wed Apr 10 11:05:01 CDT 2002


This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
--
[ Picked text/plain from multipart/alternative ]
Thanks Greg, works great!


You can use a For Each loop:

Dim QSItem
For Each QSItem in Request.QueryString
    Response.Write (QSItem & " = " & Request.QueryString(QSItem) & "<br />")
Next

Note that if you have two or more items in the querystring with the same
name, Request.QueryString(QSItem) will return a comma-delimited list of
them.

Greg



More information about the thelist mailing list