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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

request.form value

Status
Not open for further replies.

iminore

Programmer
Sep 3, 2002
50
0
0
GB
When using request.form if I examine individual fields (request.form("a")) then a value of 'a b' is returned correctly. If I look at the whole request.form value then blanks etc are converted to their http equivalents.
Is there a way of getting the original whole request.form value.
Please don't mention URLEncode or HTMLEncode - they are for sending to the browser. I'm on the server.
 
This will display all the information sent in a form:


For each x in Request.Form
Response.write x &&quot;: &quot;& Request.Form(x) &&quot;<br>&quot;
Next

hth

simon
 
yes thanks simon

in fact I'll do:

for i = 1 to request.form.count
strForm = strForm & request.form.key(i) & request.form.item(i)
next

which gives me what I want
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top