<html:form action="/updateTotal">
<logic:iterate id="item" name="cart" property="items" scope="session">

ISBN: <bean:write name="item" property="isbn" filter="true"/>
<html:link page="/addItem.do" paramName="item" paramProperty="isbn">
<img src="images/trashCan.gif" width="18" height="26">
</html:link>

</logic:iterate>
</html:form>

-----------
Ok, the line: <bean:write name="item" property="isbn" filter="true"/> works 
fine, displays the value, but the line:

<html:link page="/addItem.do" paramName="item" paramProperty="isbn">

Doesnt add the isbn parameter, it renders it only as:
http://localhost:8080/test/addItem.do , I want it to render it as something 
like

http://localhost:8080/test/addItem.do?isbn="0000"

Thanks for any help.
-allen-

Reply via email to