Answered
value fetch from db
Inclusive dates of leave are # <input name="leavedate"
size="30" maxlength="30" value="#variables.leavedate#">.
The above value is stored in database named "testcolumn".
when I fetch that value to print out using following codes
<cfset variables.curValue = testqueryname.testcolumn>
<cfoutput>#Evaluate(DE(variables.curValue))#</cfoutput>
I got an error as below:
ColdFusion was looking at the following text:
<
The CFML compiler was processing:
< marks the beginning of a ColdFusion tag.Did you mean LT or LTE?
an expression beginning with "\"", on line 1, column 1.This message is usually caused by a problem in the expressions structure.
Can anyone help me what I did wrong? thanks
The above value is stored in database named "testcolumn".
when I fetch that value to print out using following codes
<cfset variables.curValue = testqueryname.testcolumn>
<cfoutput>#Evaluate(DE(variables.curValue))#</cfoutput>
I got an error as below:
ColdFusion was looking at the following text:
<
The CFML compiler was processing:
< marks the beginning of a ColdFusion tag.Did you mean LT or LTE?
an expression beginning with "\"", on line 1, column 1.This message is usually caused by a problem in the expressions structure.
Can anyone help me what I did wrong? thanks