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.
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.