• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • Ron McLeod
  • paul wheaton
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
  • Devaka Cooray
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
  • Himai Minh
Bartenders:

Attribute variable invalid for tag set according to TLD

 
Greenhorn
Posts: 12
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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 ]
 
Sheriff
Posts: 28411
102
Eclipse IDE Firefox Browser MySQL Database
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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".
 
reply
    Bookmark Topic Watch Topic
  • New Topic