> From: Butch Zaccheo
> <cfset variable.lt = �<�>
>
> I get this error:
>
> Detail: Problem occurred while parsing variables.lt = �<�
It's trying to evaluate �<� and it can't. If you want to set "variable.lt" to be the string "�<�" then you need the quotes (<cfset variable.lt = "�<�">
(Note, "variable" isn't a scope within CF. I think you want "variables.lt")
If you are trying to set variable.lt to actually evaluate �<� and to be "true" then you could do:
<cfset variables.lt = Evaluate("� LT �")>
It kind of depends on what you're trying to do with the line:
<cfset variable.lt = �<�>
---------------------------
Scott Brady
http://www.scottbrady.net/
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

