Use ListAppend() instead of string concatenate
<cfset numberList = "one,two,three" />

<cfset numberList = ListAppend(numberList,"four")/>

instead of

<cfset numberList = "one,two,three" />

<cfset numberList = numberList & ",four" />

 

Small fish in the sea

A ColdFusion programer since 2006 which have developed various web based applications using Adobe ColdFusion (from version 4.5 to 9).

manoj_kothari9@yahoo.com
+91 9711601778

Join me on:

more about me

Video times

Here are some videos related to ColdFusion, Database tutorials. Hopefully it will be helpful for you.

view videos

Tip for the day

IsDefined  - Limitation

The IsDefined function does not test the existence of array elements. Instead, place any code that could access an undefined array element in a try block and use a catch block to handle exceptions that arise if elements do not exist.

view detail

Guest book
Adobe ColdFusion 9