Hi everybody:
I donīt understand a lot of things about Struts, for example, I have a jsp:
<shtml:form method="post" action="/listRequirements.do?format=jsp">
I know that when I submit will go to the listRequirementsAction, after that I receive in listRequirementsForm the parameters.
I see in jsp this:
<a class="common_link" title="<bean:message key='listRequirements.update'/>" href="/item/loadRequirement.do;jsessionid=<%= session.getId()%>?target=work_on_requirement&id=<bean:write name="data" property="id"/>" ><bean:write name="data" property="id"/></a>
that is a link and I understand that call this link and it execute loadRequirementAction , the doubt is:
If I donīt submit is there another way to assign the parameters to the form???
thank you