Wrox Home  
Search P2P Archive for: Go

  Return to Index  

javascript_howto thread: How to Iterate over ASP Request object using JavaScript?


Message #1 by "Dan Vokt" <sales@d...> on Sun, 21 Apr 2002 19:21:23
> You can use the ENCTYPE attribute of the FORM tag and set it to 
text/plain.

I do not follow how setting the form encoding type to plain text would 
affect the server-side iteraton of the Request.Form object?

I tried it anyway, but:

  for (var key in Request.form) {
    Response.write(key + " = " + Request.form(key) + "<br>\n");
  }

Still does nothing...

Thanks for trying!

Dan

  Return to Index