Whatever message this page gives is out now! Go check it out!
<cfscript>
name = new empname();
name.first="Paul";
name.last="Scholes";
writeOutput("First: #name.first#<br>");
writeOutput("Last: #name.last#<br>");
</cfscript>component invokeImplicitAccessor = "true" {
property string first;
property string last;
function setFirst(first){
writeOutput("#getFunctionCalledName()# called<br>");
variables.first = arguments.first;
}
function setLast(last){
writeOutput("#getFunctionCalledName()# called<br>");
variables.last = arguments.last;
}
function getFirst(){
writeOutput("#getFunctionCalledName()# called<br>");
return variables.first;
}
function getLast(){
writeOutput("#getFunctionCalledName()# called<br>");
return variables.last;
}
}