• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

problem with JSTL

 
Ranch Hand
Posts: 97
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is this use of c ut is wrong?



I an getting this exception:

org.apache.jasper.JasperException: /requestJsp.jsp(13,0) According to TLD or attribute directive in tag file, attribute value does not accept any expressions

thanx,
soni
 
Ranch Hand
Posts: 121
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
The standard.jar file contains 2 tlds => c.tld and c-rt.tld. The former doesn't accept run-time values (rtexpr value) for <c ut> while the latter accepts. Copy c-rt.tld to a folder tld under WEB-INF and the same would work.

But then, why the container refers to c.tld instead of c-rt.tld by default still remains unanswered.

Env: Tomcat 5.0.30/Win 2000
 
reply
    Bookmark Topic Watch Topic
  • New Topic