I guess this is my day to send emails before they're finished or properly
proofed. Let me try the damn code one more time.
<cffunction name="configAfterNew" returntype="void">
<cfscript>
setCurrentUserName(getUserName());
</cfscript>
</cffunction>
<cffunction name="getCurrentUserName" returntype="string">
<cfscript>
if ( structKeyExists(instance,"CurrentUserName" ) {
return instance.currentUserName;
} else {
return getUserName();
}
</cfscript>
</cffunction>
<cffunction name="setCurrentUserName" returntype="string">
<cfargument name="currentUserName" required="yes" />
<cfset instance.currentUserName = arguments.currentUserName />
</cffunction>
--~--~---------~--~----~------------~-------~--~----~
Before posting questions to the group please read:
http://groups.google.com/group/transfer-dev/web/how-to-ask-support-questions-on-transfer
You received this message because you are subscribed to the Google Groups
"transfer-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/transfer-dev?hl=en
-~----------~----~----~----~------~----~------~--~---