aspose file tools
The moose likes IDEs, Version Control and other tools and the fly likes Attribute variable invalid for tag set according to TLD Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Engineering » IDEs, Version Control and other tools
Reply Bookmark "Attribute variable invalid for tag set according to TLD" Watch "Attribute variable invalid for tag set according to TLD" New topic
Author

Attribute variable invalid for tag set according to TLD

bhushan kumarsel
Greenhorn

Joined: Jul 24, 2007
Posts: 12
hi all i am getting this error.
Attribute variable invalid for tag set according to TLD

the related code is

(Edited to disable smilies and put code in CODE tags and escape XML: PC)
[ January 04, 2008: Message edited by: Paul Clapham ]
Paul Clapham
Bartender

Joined: Oct 14, 2005
Posts: 16483
    
    2

This is entirely a question about JSTL and so it should have been put in the JSP forum. But it's easy to answer, the message says that the "variable" attribute isn't valid in the "c:set" element and that's true. It should be "var" and not "variable".

Also, c:set shouldn't appear in that location inside c:choose. It should be outside the c:choose element. And the code isn't going to work as you expected because you declared a variable named "activationDt" and then tried to use variables named "activatioDate" and "activationDate".
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Attribute variable invalid for tag set according to TLD
 
Similar Threads
JSTL Conditional
NOT EMPTY or NOT NULL?
string comparison with EL / JSTL
problem with jstl tags
Boolean operations inside conditional tags