You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by "Deadman, Hal" <ha...@tallan.com> on 2001/02/08 01:16:29 UTC

link tag parameters problem

I have a two Struts link tags on a page. The first one sets a parameter but
the parameter shows up on both links instead of just the first one.  I am
using Weblogic 6.0. Should the param* attributes be getting reset in the
release() method of the link tag? When is the release method on a tag
called?  
 
Thanks, Hal
 
 
<html:link paramId="orderId" paramName="order" paramProperty="orderId"
page="/viewOrderDetail.do">
<%= "Order No. " + order.getOrderId()%>
</html:link>
 
<html:link page="/createOrder.do"><bean:message
key="link.createorder"/></html:link>