Feb 5, 2001 #1 oceandeep IS-IT--Management Jul 6, 2000 69 GR Can anybody here give me the enlightment on how to convert date type to Sting, thanks in advance. Albert
Can anybody here give me the enlightment on how to convert date type to Sting, thanks in advance. Albert
Feb 5, 2001 #2 Elizabethans Programmer Jan 26, 2001 6 AE Hi, You can have strings directly using the "", for example: <CFOUTPUT QUERY="qStudent"> <CFSET Grade = "#StGrade#"> </CFOUTPUT> You can convert a string beginning with a numeric to a numeric value, for example: <CFOUTPUT> <CFSET value1 = Val(Grade)> <CFSET value2 = Val('571BFX')> </CFOUTPUT> <Always there's a solution></Always there's a solution> Upvote 0 Downvote
Hi, You can have strings directly using the "", for example: <CFOUTPUT QUERY="qStudent"> <CFSET Grade = "#StGrade#"> </CFOUTPUT> You can convert a string beginning with a numeric to a numeric value, for example: <CFOUTPUT> <CFSET value1 = Val(Grade)> <CFSET value2 = Val('571BFX')> </CFOUTPUT> <Always there's a solution></Always there's a solution>