• 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
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

problem with tagfile

 
Ranch Hand
Posts: 517
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

plz look at this code

TestHeader.jsp
---------------
<%@ taglib prefix="my" tagdir="/WEB-INF/tags"%>
<html>
<my:Header attr="test"/>
<body>

Header.tag (placed inside WEB-INF/tags)
----------

<@ attribute name="attr" required="true" rtexprvalue="true" %>
This is header file


while running TestHeader.jsp i got this error

org.apache.jasper.JasperException: /TestHeader.jsp(3,0) Attribute attr invalid for tag Header according to TLD

plz help me to solve this?

Thanks
 
Ranch Hand
Posts: 951
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

You missed the % in the following statement

<%@ attribute name="attr" required="true" rtexprvalue="true" %>
This is header file



Thanks
 
MInu
Ranch Hand
Posts: 517
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
thanks.....
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic