Paul,

That didn't help. I've tried putting that line the tag file, and then even in 
my JSP page as a "page" directive. Nothing helped. Another interesting thing is 
that say i do something like:

<c:set var="test" value="1"/>

and then in my JSP i write, for example, <p>${test}</p>. I get ${test} in the 
browser. So the only time that ${test} gets evaluated is when i do a <c:out 
value="${test}"/>

This is so frustrating...thank you for helping me out.

Felix


-----Original Message-----
From: Paul Benedict [mailto:[EMAIL PROTECTED]
Sent: Fri 6/30/2006 7:08 PM
To: Struts Users Mailing List
Subject: RE: Passing Struts request attribute to custom tag
 
Okay. So you're writing a JSP Tag file, not a JSP Java tag. Understood.

The JSP should evaluate the attribute for you. So I don't know why it is not, 
but I am going to take a shot in the dark.

<%@ tag isELIgnored="false" %>
Add isELIgnored="false" to the tag file directive and see what happens.

Felix Khazin <[EMAIL PROTECTED]> wrote: I'm using 2.0, and no I don't have 
rtexprvalue set to true. I am not
using a TLD. I just wrote a custom.tag put it in my WEB-INF/tags/
directory and then did this in my code: 

<%@ taglib prefix="mytags" tagdir="/WEB-INF/tags/" %>

Do I need to make a TLD, or can I just define rtexprvalue to be true in
my taglib line above?

Thank you!
Felix

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to