coldfusion object v10 vs. v9 -
this piece of code works on cf10, not on cf9. can give me insight why?
the cf9 error reads:
invalid cfml construct found on line 2 @ column 18. coldfusion looking @ following text: {
the code:
<cfscript> companyobjdata = { 'customerid' : 'a', 'customername1' : 'b', 'customeraddress1' : 'c', 'customeraddress2' : 'd', 'city' : 'e', 'st' : 'f', 'zip' : 'g', 'phone' : 'h', 'defaultterm' : 'i' }; </cfscript> <cfdump var="#companyobjdata#" >
the :
separator supported cf10, use =
signs instead.
Comments
Post a Comment