concatenate strings
<cfset server = #cgi.SERVER_NAME#>
<cfset script = #cgi.SCRIPT_NAME#>
<cfset path = ListContains(script, "TEST")>
<cfoutput>#script#</cfoutput>
<cfoutput>#path#</cfoutput>
How to concatenate server, path and "&lang=fr"?
All the following statements will result in error:
<cfset newpath = #server# & #path# & "&lang=fr">
<cfset newpath = server & path & "&lang=fr">
