Checked? Checked="yes"?

2000-05-09 Thread [ a l l e n g ]
Which is the proper form for this form input? ? ? TIA -Allen -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a me

Re: Checked? Checked="yes"?

2000-05-09 Thread Chris Hayes
AFAIK ColdFusion should convert it to a proper INPUT tag: Chris - Original Message - From: [ a l l e n g ] <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 09, 2000 4:58 PM Subject: Checked? Checked="yes"? > Which is the proper

Re: Checked? Checked="yes"?

2000-05-09 Thread David Berger
>From: "[ a l l e n g ]" <[EMAIL PROTECTED]> >Reply-To: [EMAIL PROTECTED] >To: <[EMAIL PROTECTED]> >Subject: Checked? Checked="yes"? >Date: Tue, 9 May 2000 10:58:22 -0500 > >Which is the proper

RE: Checked? Checked="yes"?

2000-05-09 Thread Michael Doyle
11:58 AM To: [EMAIL PROTECTED] Subject: Checked? Checked="yes"? Which is the proper form for this form input? ? ? TIA -Allen -- Archives: http://www.eGroups.com/list/cf-talk To Unsubscribe visit http://w

Re: Checked? Checked="yes"?

2000-05-09 Thread Deanna L. Schneider
If you want to pass "yes" to the action page, you should use value="yes" with checked. If you want to pass "5" the following is correct. ? Only fields that are checked will be passed, so on the action page, ifyou want to check if something has been passed, just check to see if the form field isd

RE: Checked? Checked="yes"?

2000-05-09 Thread Dave Watts
> Which is the proper form for this form input? > > ? > > ? The second is what you usually see, but both will generally work. "CHECKED", in the second example, is a Boolean parameter. Dave Watts, CTO, Fig Leaf Software http://www.figleaf.com/ voice: (202) 797-5496 fax: (202) 797-5444 --

Re: Checked? Checked="yes"?

2000-05-09 Thread [ a l l e n g ]
Thank you. - Original Message - From: "Chris Hayes" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, May 09, 2000 12:08 PM Subject: Re: Checked? Checked="yes"? > AFAIK > > > > ColdFusion should convert it to a proper INPUT t

RE: Checked? Checked="yes"?

2000-05-09 Thread Dave Watts
> If you want to pass "yes" to the action page, you should use > value="yes" with checked. If you want to pass "5" the following > is correct. > > ? This isn't correct. If you want the field to be checked by default, then you should add the word CHECKED, as in the above example. If the user submi

RE: Checked? Checked="yes"?

2000-05-09 Thread Scott Weikert
s, whether on or off. --Scott > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, May 09, 2000 1:32 PM > To: [EMAIL PROTECTED] > Cc: [EMAIL PROTECTED] > Subject: RE: Checked? Checked="yes"? > > > > If you wan