Folks, too many people make use #xxxxx# when it's totally
unnecessary, it's inefficient and it's harder to read.
THIS
<CFSET test=QuotedValueList(getPerson.id,",")>
<CFSET
deletePosition=listfind(variables.test,"'1232'")>
<CFSET
test=listDeleteAt(variables.test,variables.deletePosition)>
NOT
<CFSET test=#QuotedValueList(getPerson.id,",")#>
<CFSET
deletePosition=#listfind(variables.test,"'1232'")#>
<CFSET
test=#listDeleteAt(variables.test,variables.deletePosition)#>
General rule, if you're not displaying it you probably don't
need ##. If you aren't displaying it but it's inside quotes then
you probably need it
e.g. <CFSET firstlast = "#RTrim(firstname)#
#RTrim(lastname)#">
although an alternative is
<CFSET firstlast = Trim(firstname) & " " &
Trim(lastname)>