Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Output all variables passed with POST

Status
Not open for further replies.

pfrancis

Programmer
Mar 18, 2004
19
US
Is there a way to output all the variables that were sent to a page with POST? Like a specific array that I can loop through or write?

(I know is PHP I can do "print_r($_POST);" is there something like this in ASP?)

Thanks.
 
this will display the names and values.

Code:
dim z
with response
for each z in request.form
	.write z
	.write " = "
	.write request.form(z)
	.write ", "
next
end with

Chris.

Indifference will be the downfall of mankind, but who cares?
A website that proves the cobblers kids adage.
Nightclub counting systems

So long, and thanks for all the fish.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top