Not sure what you mean by receive, you always receive the parameters. to access them you refer to them by name.
eg. request("action")
They are part of the request collection. you can loop through all the parameters in the query string with
Code:
dim obj
for each obj in request.querystring
response.write(obj & " = " & request(obj) & "<BR>")
next
This will list all the variable names in the querystring and their values.
Not sure if this is what you mean but hope it helps
======================================
They say, best men are moulded out of faults,
And, for the most, become much more the better
For being a little bad.
======================================