j s wrote:
> Does anyone know how to use a textarea as a multi input field?  F.e. I'v seen 
> a form which uses a textarea to insert mulitple email addresses each 
> separated by the carriage return.
> 

On your processing page, you can use something like the following:

<CFSET variables.CrLf = Chr(13) & Chr(10)>
<CFLOOP list="#Form.MyTextArea#" delimiters="#variables.CrLf#" index="i">
        #i#<br>
        <!--- Additional processing can go here... --->
</CFLOOP>

Hope that helps!

-- 
Warm regards,
Jordan Michaels
Vivio Technologies
http://www.viviotech.net/
Blue Dragon Alliance Member
[EMAIL PROTECTED]

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:237769
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to