Hi,
I am using the html:image tag and am passing values to a
jsp using the property and value attributes. Here is the code:
<html:image onclick="javascript:popUp('success1.jsp')" src="images/images.jpg" property="key" value="<bean:write name="mapVals" property="key"/>" />
Am catching this value in success1.jsp as
request.getParameter("key");
But only null is getting passed.
Help.