Re: Problem with JSTL and Struts tag But Not with

2006-08-25 Thread Laurie Harper
Exactly. JSP does not allow a custom action to appear within another custom action's attribute values. is a custom action; is just an HTML tag. If you're using Servlet 2.4 / JSP 2.0 or above, you can achieve what you want like this: ">text L. Vishal Seth wrote: Nested tags...i guess

Re: Problem with JSTL and Struts tag But Not with

2006-08-24 Thread Mississippi John Hurt
Yes, thanks, I tried , with but still couldn't get it to work. Anyway I just used the Map feature of and its working fine. Thanks all. On 8/24/06, Wendy Smoak <[EMAIL PROTECTED]> wrote: On 8/24/06, Mississippi John Hurt <[EMAIL PROTECTED]> wrote: > Hi thanks for the help. I tried using the

Re: Problem with JSTL and Struts tag But Not with

2006-08-24 Thread Wendy Smoak
On 8/24/06, Mississippi John Hurt <[EMAIL PROTECTED]> wrote: Hi thanks for the help. I tried using the pageContext, but it seems for some reason, the render engine is not interpreting the scriptlet ie ( <%= ..%>) Its taking it literally (ie link has <%= chars in it after rendered in html), weir

Re: Problem with JSTL and Struts tag But Not with

2006-08-24 Thread Mississippi John Hurt
--- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Thursday, August 24, 2006 3:41 PM To: Struts Users Mailing List Subject: Re: Problem with JSTL and Struts tag But Not with You are correct. Nesting tags do *not* work. Try this... text -- James Mitchell 678.9

RE: Problem with JSTL and Struts tag But Not with

2006-08-24 Thread Vishal Seth
Yeah or other way..but with usage of scriplet is .. <%=pageContext.getAttribute(key name)%> -Original Message- From: James Mitchell [mailto:[EMAIL PROTECTED] Sent: Thursday, August 24, 2006 3:41 PM To: Struts Users Mailing List Subject: Re: Problem with JSTL and Struts tag But No

Re: Problem with JSTL and Struts tag But Not with

2006-08-24 Thread James Mitchell
You are correct. Nesting tags do *not* work. Try this... texthtml:link> -- James Mitchell 678.910.8017 On Aug 24, 2006, at 1:19 AM, Vishal Seth wrote: Nested tags...i guess does not work.. -Original Message- From: Mississippi John Hurt [mailto:[EMAIL PROTECT

RE: Problem with JSTL and Struts tag But Not with

2006-08-23 Thread Vishal Seth
Nested tags...i guess does not work.. -Original Message- From: Mississippi John Hurt [mailto:[EMAIL PROTECTED] Sent: Thursday, August 24, 2006 10:48 AM To: Struts Users Mailing List Subject: Problem with JSTL and Struts tag But Not with Why is it that when I do the below with struts t