Anna Simbirtsev wrote:
I tried first assigning the value to a string and then sending it.
<% String value_ = duf1.getValue(); %>
<html:link page="/myAction.do" paramId="value_name" paramName="value_">
<html:img srcKey="add.button.image" altKey="add.button.image.alt"
width="80" height="20"border="0"/></html:link>
Still does not work.
You are assigning a value in a JSP class, but you should've assigned
one in request, or page, or session context:
<% request.setAttribute("value_", duf1.getValue()); %>
In JSTL syntax the same would look like:
<c:set var='value_' value='${duf1.value}'/>
Oleg
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]