I do some things in a popup window and pass the value back through a javascript function.
Is there a way that I can take the value that is passed back and set it as a coldfusion variable.
what I am specifically looking for is something that will do this.
function changingValues(id, valueReturned)
{
<cfset myColdFusionValue_id = valueReturned>
}
I need to append the id to "myColdFusionValue_"
and set that variable value = valueReturned
Is there a way that I can take the value that is passed back and set it as a coldfusion variable.
what I am specifically looking for is something that will do this.
function changingValues(id, valueReturned)
{
<cfset myColdFusionValue_id = valueReturned>
}
I need to append the id to "myColdFusionValue_"
and set that variable value = valueReturned