ColdFusion isDefined getting undefined error
3 answers
isDefined takes a variable name , not the variable itself:
<cfif not isDefined("activity")>
<cfset activity="">
</cfif>
+9
source to share