Try looping over the .csv
<!--- Read the file into a variable --->
<cffile action="READ"
file="#FORM.CSV_FILENAME#"
variable="CSV_DATA_FILE">
<cfset CRLF = Chr(13)&Chr(10)>
<cfloop index="CSV_DATA_LINE" list="#CSV_DATA_FILE#"
delimiters="#CRLF#">
<cfset CSV_DATA_LINE = replace(CSV_DATA_LINE, ",,", ", ,", "All")
>
<--- Now treat the variable CSV_DATA_LINE as a comma deleimted
list of your data ---->
</cfloop>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"cfaussie" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/cfaussie?hl=en
-~----------~----~----~----~------~----~------~--~---