I am using Struts 2 and Tiles to develop an application.
I have 2 JSP files being loaded into 2 separate cells of a table (Tiles concept). The first JSP has links (created using <s:url/>
tag). Clicking on these links should:
(a) retrieve the current form data (the value selected in a radio button group, the values selected in a checkbox group and the value in a textfield) in the second JSP and update the database,
(b) Then different data has to be fetched to populate the second JSP.
How do I achieve (a)?