Whatever message this page gives is out now! Go check it out!
emp=new employee(firstName="Tom", lastName="Nash");emp=new Employee({firstName="Tom", lastName="Nash"});<cfscript>
emp = new employee(firstname="Tom", lastname="Nash");
writeOutput("<u><b>Employee Details</b></u>: " & "<br><br>");
writeOutput("First Name: " & emp.getFirstname() & "<br>");
</cfscript><cfcomponent accessors="TRUE">
<cfproperty name="firstname" type="string" setter="true"/>
<cfproperty name="lastname" type="string" setter="false"/>
<cfproperty name="age" type="numeric"/>
<cffunction name="onMissingMethod">
<cfargument name="missingMethodName"/>
<cfargument name="missingMethodArguments"/>
<cfoutput>
onMissingMethod() called for method call - #arguments.missingMethodName#
<hr>
</cfoutput>
</cffunction>
</cfcomponent><cfcomponent accessors="TRUE">
<cfproperty name="firstname" type="string" setter="true"/>
<cfproperty name="lastname" type="string" setter="false"/>
<cffunction name="init">
<cfreturn this>
</cffunction>
<cffunction name="onMissingMethod">
<cfargument name="missingMethodName"/>
<cfargument name="missingMethodArguments"/>
<cfoutput>
onMissingMethod() called for method call - #arguments.missingMethodName#
<hr>
</cfoutput>
</cffunction>
</cfcomponent><cfcomponent accessors="TRUE" initmethod=foo>
<cfproperty name="firstname" type="string" setter="true"/>
<cfproperty name="lastname" type="string" setter="false"/>
<cffunction name="foo">
<cfreturn this>
</cffunction>
<cffunction name="onMissingMethod">
<cfargument name="missingMethodName"/>
<cfargument name="missingMethodArguments"/>
<cfoutput>
onMissingMethod() called for method call - #arguments.missingMethodName#
<hr>
</cfoutput>
</cffunction>
</cfcomponent><cfscript>
emp = new employee(firstname="Tom", lastname="Nash");
writeOutput("<u><b>Employee Details</b></u>: " & "<br><br>");
writeOutput("First Name: " & emp.getFirstname() & "<br>");
writeOutput("<hr>");
emp1 = new employee1(firstname="Tom", lastname="Nash");
writeOutput("First Name: " & emp1.getFirstname() & "<br>");
writeOutput("<hr>");
emp2 = new employee2(firstname="Tom", lastname="Nash");
writeOutput("First Name: " & emp2.getFirstname() & "<br>");
writeOutput("<hr>");
</cfscript>
<cfoutput>
onMissingMethod() called for method call - #arguments.missingMethodName#
<hr>
</cfoutput>