pass value from jsp to struts action
Hi,
I need to pass one value from jsp to my struts action.
Code below is used to show orders on one jsp, and my idea was to have button in each row which will redirect me to another page with order details.
<logic:iterate id="lineItem" indexId="index" name="adminForm" property="sthList">
<html:text property="sth[${index}].sth.orderId" />
-
<html:submit styleId="submitButton" onclick="submitForm()" property="showButton" value="Show" />
</logic:iterate>
How can I pass value of my orderId (which is displayed properly on my first jsp) to my struts action, which will handle my second jsp?
Thanks in advance.

