In a current project, I created a custom tag to create menu items in a
jsp. In the .tld, I set all attributes for the tag to have the value "rtexprvalue=true".
Now I'm trying pass a scriptlet expression to an attribute (don't bite me, >I< didn't wish to use scriptlets!):
When trying to load the page, an exception is thrown:
Attribute value currentSetting.equals("values") is quoted with " which must be escaped when used within the value
What does this mean? The quotes around "values"? How can I escape them here? I also tried storing the value in another variable, that works. But I'd rather keep the expression just where it is needed..