A CFML variable name cannot end with a "." character.
The variable form. ends with a "." character. You must supply an additional structure key or delete the "." character.
The CFML compiler was processing:
The body of a cfoutput tag beginning on line 8, column 19.
The body of a cfoutput tag beginning on line 8, column 19.
The body of a cfoutput tag beginning on line 8, column 19.
The error occurred in C:\CFusionMX\wwwroot\dev\temp.cfm: line 8
6 : <cfloop from="1" to="#gotill#" index="x">
7 : <cfset OTitle = "title#x#">
8 : <cfoutput>#form.['Title' & x]#</cfoutput>
Slight typo in line 8 you don't use "." and '[' at the same time. The line should read.
<cfoutput>#form['Title' & x]#</cfoutput>
Confidentiality Notice: This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message.
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

