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), weird. BTW, the above code is enclosed by a <displaytag:table> and
column tags.  Anyone know why?  I'll try the map if I can't get this to work
soon.

<c:choose>
 <c:when test="${var=='dog'}">
     <html:link
href="/strutsAction.do?id=<%=((MyObj)pageContext.getAttribute("myObj")).getID()%>">text</html:link>
 </c:when>
...</c:choose>


On 8/24/06, Vishal Seth <[EMAIL PROTECTED]> wrote:

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 <html:link> tag But Not with
<a>

You are correct.  Nesting tags do *not* work.

Try this...

<jsp:useBean id="paramMap" class="java.util.HashMap" scope="page"/>

<c:set target="${paramMap}" property="id"
           value="${obj.id}"/>

<c:choose>
   <c:when test="${var=='dog'}">
       <html:link action="/strutsAction" name="paramMap">text</
html:link>
   </c:when>
</c:choose>



--
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 PROTECTED]
> Sent: Thursday, August 24, 2006 10:48 AM
> To: Struts Users Mailing List
> Subject: Problem with JSTL and Struts <html:link> tag But Not with <a>
>
> Why is it that when I do the below with struts <html:link> tag I
> get an
> error "Unterminated &lt;html:link tag" due to using JSTL <c:out>...
>
> <c:choose>
>   <c:when test="${var=='dog'}">
>       <html:link href="/strutsAction.do?id=<c:out value="${obj.id
> }"/>">text</html:link>
>   </c:when>
> ...</c:choose>
>
> but when I use a regular HTML tag, its able to handle the JSTL <c:out>
> fine?
>
> <c:choose>
>   <c:when test="${var=='dog'}">
>       <a href="/app/strutsAction.do?id=<c:out
> value="${obj.id}"/>">text</a>
>   </c:when>
> ...</c:choose>
>
> Any ideas? I very much want to use the Struts tag and JSTL so I dont
> have to
> hardcode the appname in the href.
>
>
>
> MASTEK
> "Making a valuable difference"
> Mastek in NASSCOM's 'India Top 20' Software Service Exporters List.
> In the US, we're called MAJESCOMASTEK
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> Opinions expressed in this e-mail are those of the individual and
> not that of Mastek Limited, unless specifically indicated to that
> effect. Mastek Limited does not accept any responsibility or
> liability for it. This e-mail and attachments (if any) transmitted
> with it are confidential and/or privileged and solely for the use
> of the intended person or entity to which it is addressed. Any
> review, re-transmission, dissemination or other use of or taking of
> any action in reliance upon this information by persons or entities
> other than the intended recipient is prohibited. This e-mail and
> its attachments have been scanned for the presence of computer
> viruses. It is the responsibility of the recipient to run the virus
> check on e-mails and attachments before opening them. If you have
> received this e-mail in error, kindly delete this e-mail from all
> computers.
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

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


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





MASTEK
"Making a valuable difference"
Mastek in NASSCOM's 'India Top 20' Software Service Exporters List.
In the US, we're called MAJESCOMASTEK


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Opinions expressed in this e-mail are those of the individual and not that
of Mastek Limited, unless specifically indicated to that effect. Mastek
Limited does not accept any responsibility or liability for it. This e-mail
and attachments (if any) transmitted with it are confidential and/or
privileged and solely for the use of the intended person or entity to which
it is addressed. Any review, re-transmission, dissemination or other use of
or taking of any action in reliance upon this information by persons or
entities other than the intended recipient is prohibited. This e-mail and
its attachments have been scanned for the presence of computer viruses. It
is the responsibility of the recipient to run the virus check on e-mails and
attachments before opening them. If you have received this e-mail in error,
kindly delete this e-mail from all computers.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


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


Reply via email to