15 May
2001
15 May
'01
6:25 p.m.
[Bruce Eckel]
How do I iterate through the fields in a form, inside the form handler? The REQUEST object has the form fields and way too much other stuff...
<title> See A Request</title> <ul><dtml-in "REQUEST.form.keys()"> <li><dtml-var sequence-item> values:<ul> <dtml-in "REQUEST.form[_['sequence-item']]"> <li><dtml-var sequence-item><br> </dtml-in> </ul> </dtml-in> </ul> Cheers, Tom P