> im trying to run a list loop from a file that uses separate
> lines for the
> items.
> i would like to use a line break as a delimiter
> anyone have any ideas??
> *****************************************************
> <select name="screen_names">
> <cfloop index="i" list="#IM_list#" delimiters=" ">
> <option value="1" SELECTED>#i#</option>
> </cfloop>
> </select>
> *****************************************************
You can simply use carriage returns and/or line feeds as delimiters.
<cfloop ... delimiters="#Chr(13)##Chr(10)#">
Dave Watts, CTO, Fig Leaf Software
http://www.figleaf.com/
voice: (202) 797-5496
fax: (202) 797-5444
------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.