cfcomponent cffunction
Hi to all,
i have a cfform input in which i use bind.
in bind there is a function which is written in a cfcomponent.
if i use a variable in that cfcomponent will it re-initialiaze itself in every bind?
ex: <cfcomponent >
<cfset variables.tk='00000'>
<cffunction>
<cfset variables.tk='00012'>
</cffunction>
<cfcomponent >
every time it will bind, the value of the tk variable will be initialized?
if i want to keep that value..is there a way?
