Trying to pass a string that needs to be evaluated in a custom tag.
I have a custom tag that runs a dynamic query and I'm trying to pass a string to it that has some variable names that is only relevant to that tag.
The attribute looks like this in the custom tag:
column_detail="
<a href=""page.cfm?category_id=##qItems.category_id##"" style=""cursor:hand;""><img src=""images/edit.gif"" /> ##qItems.category_title##</a>"
"
(qItems is the name of the query being run inside the tag)
and in the customtag itself I tried to call it like this
#Evaluate(ATTRIBUTES.column_detail)#
However, I get an error with the < in the anchor tag, because I guess it's trying to evaluate that as a mathmatical equation and falling short.
How do I properly pass that string to the tag and have the tag process those variables?
Thanks!
Paul
