It's best to use the following syntax: <cfset AuthKey = mid(line1,19)> <cfset RefToken = mid(line2,15)> <cfset RefToken = "239hy9uiw784fbew43y7"> What Dave is talking about is that the following two lines are functionally equivalent, but the first line makes the parser work harder: <cfset AuthKey = "#mid(line1,19)#"> <cfset AuthKey = mid(line1,19)>
... View more