I have a dynamic for field:
<cfset trow = (Total_Records + 1)>
<CFSET Total_Records=Test.RecordCount>
<CFLOOP INDEX="Counter" FROM=1 TO="#Total_Records#">
<input type="text" name="fweight_#Counter#_#trow#" value="0">
</cfloop>
The naming convention has to do with the cell number in the table and some
javascript that builds a spreadsheet.

So here is the question, Since there are two dynamic parts of the field's
name, how do I output the fields data on an action page?
That is,
<cfset critvarlist = listappend(critvarlist, "fweight_#Counter#_#ftrow#")>
returns
"fweight_1_4,fweight_2_4,fweight_3_4"
but how do I get the pound signs around the whole variable so I can get the
actual values.
something like:
##fweight_ #Counter#_#ftrow###  or '"#"&"fweight_ "&#Counter#_&#ftrow#&"#" ?


------------------------------------------------------------------------------
Archives: http://www.eGroups.com/list/cf-talk
To Unsubscribe visit 
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/cf_talk or send a 
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.

Reply via email to