jimmyshoes
Programmer
I read that when using cfcs in a coldfusion web application you should declare variables within a UDF with the local scope
For example
However, is it ok to use the arguments scope throughout a UDF or should you include
For example
Code:
<cfset var someVar = "" >
However, is it ok to use the arguments scope throughout a UDF or should you include
Code:
<cfset var theVar = "" >
<cfset theVar = arguments.theVar />