Copy link to clipboard
Copied
Greetings to all
I not enough work with ColdFusion.
My question: How I can receive function parametres in *.CFM file from a *.CFC component?
OR
How I can calling functions in CFM from Flex Application?
For example:
In CFM:
<cffunction>
..............
<cfreturn HelloVariable>
</cffunction>
How I can recieve HelloVariable in my Flex Application?
Sorry for my English
Copy link to clipboard
Copied
It needs to be made without use URL parameters. It is necessary that the parameters has been protected.
Copy link to clipboard
Copied
In your cfc, add a cfinclude to the cfm file and then you have access to the function.
Copy link to clipboard
Copied
Ok, Dan. I will make so.
Copy link to clipboard
Copied
Perfect! Thank you, Dan.