A simple little ASP snippet. If you want to see what's coming over from your method="POST" form – here's a bit of code that will loop through everything, show you the variable name and it's value:
for each x in request.form()
response.write(x & ": " & request.form(x) & "<br>" )
next
if you're using method="GET" then it would be: