Entity has incorrect type for being called as a function coldfusion
may be you have some variable name and function name same.
Example code-
<cfset fgGetMeyourName = fgGetMeyourName (1)>
<cffunction name ="fgGetMeyourName">
<cfargument name="id" >
<!--- do ur code -->
</cffunction>
in above example- fgGetMeyourName is variable and function name both. this will give error.
FIX: your function name and variable name needs to be different.
No comments:
Post a Comment