RE: Shortcut for Getting Form Field

2000-05-22 Thread Dave Watts
> CGI.fieldnames > > I know because I'm using this right now for a form that is dynamically > generated. FIELDNAMES belongs to Form, not CGI: FORM.FIELDNAMES. Alternatively, in CF 4.5, you can loop over the Form structure using CFLOOP, which avoids the problem of repeated form field names which m

Re: Shortcut for Getting Form Field

2000-05-22 Thread Kevin Marshall
Steve, I suppose you could submit your form to a 'do-nothing' processing page and then steal the list of passed form fields from the debugging info (you do have debugging turned on, right?). Be x-tra careful though with radio buttons and checkboxes since they won't be passed unless they are s

Re: Shortcut for Getting Form Field

2000-05-22 Thread KChapman
cc: Subject: Shortcut for Getting Form Field 05/22/00

Shortcut for Getting Form Field

2000-05-22 Thread Steve Weiner
I'm working on a project that has tons of form fields on a page. I was wondering if there was any cf tags or anything that I could take the form, submit it, and get a list of all the form field names that are available to me without having to go through and doing all the copying pasting... Is t