I have created several variables with CFSET and they work fine the first 2 times, however after browsing the page in ColdFusion, this is what happens:
<cfset grade1=#g1#>; after browsing in Coldfusion it looks like <cfset grade1="#g1#">;
if it is a variable that stores a formatted date :
<cfset date1=dateformat(NOW(), "mm/dd/yy">; after browsing the pages a couple times it looks like:
<cfset date1='dateformat(NOW(), "mm/dd/yy"'> .
would appreciate your help solving this problem. Thanks.
<cfset grade1=#g1#>; after browsing in Coldfusion it looks like <cfset grade1="#g1#">;
if it is a variable that stores a formatted date :
<cfset date1=dateformat(NOW(), "mm/dd/yy">; after browsing the pages a couple times it looks like:
<cfset date1='dateformat(NOW(), "mm/dd/yy"'> .
would appreciate your help solving this problem. Thanks.