This should be easy but I’m not getting *quite* what I want. I am developing a rather hairy, as in complex, html form and need to start writing a back end db for it. This form is going to contain multitudes of things that need to map to the db fields. what i’d like to do is slap together some quick asp or javascript or something that can go thru the form and tell me the NAME of all the items. I can get the various drop-downs and textboxes and the submit button using this code:
<–
For Each Item In Request.Form
Response.Write(Item) & "”
Next
–>
but all my checkboxes are skipped. there’s a lot of them and I want to avoid spelling mistakes in the db and want to be lazy and want to cut-and paste.
Any ideas?
TIA