ASP: What’s coming from the form?
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:
May 17th, 2003 at 4:29 pm
you could also just put
for each x in request()
then it would work regardless of whether you are running a put or a get. I have something similar in my debug include page so that I can print out the values in a debug loop.
September 12th, 2003 at 4:06 am
commentaar