What is your desired output?

If you just want a straight list with commas between the chosen names,
then do as Claude said:
Faculty Supervisor: #form.fac#

If you need line breaks between the names, then do a loop as Claude
said (with a <br/> added):
<cfloop list="#form.fac#" index="f">
#f#<br/>
</cfloop>


On Tue, Mar 25, 2008 at 9:12 AM, Steve LaBadie <[EMAIL PROTECTED]> wrote:
> Is there a list of all possible delimiters value?
>
>  If I use your suggestion there are no spaces or commas between full
>  names when the information is sent. If I use delimiters="| " there is a
>  comma but no space after comma.
>
>  Steve LaBadie, Web Manager
>  East Stroudsburg University
>  200 Prospect St.
>  East Stroudsburg, Pa 18301
>  570-422-3999
>  [EMAIL PROTECTED]
>  http://www.esu.edu
>
>  -----Original Message-----
>  From: Claude Schneegans [mailto:[EMAIL PROTECTED]
>  Sent: Tuesday, March 25, 2008 9:59 AM
>  To: CF-Talk
>  Subject: Re: Checkboxes not passing variables correctly
>
>   >>delimiters="crlf">
>
>  You're using "crlf" as delimitior?
>  No wonder c, r, l & f are lost.
>  You probably meant CR LF, but these are not the delimiters used to
>  separate field values, the simple comma is used.
>  So just use
>  Faculty Supervisor: <cfloop list="#form.fac#" index="f">#f#</cfloop>
>
>  or more simply:
>  Faculty Supervisor: #form.fac#
>
>  --
>  _______________________________________
>  REUSE CODE! Use custom tags;
>  See http://www.contentbox.com/claude/customtags/tagstore.cfm
>  (Please send any spam to this address: [EMAIL PROTECTED])
>  Thanks.
>
>
>
>
>  

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;160198600;22374440;w

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:302015
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to