I have two jsp pages in my spring project. In first jsp I have one dynamic dropdown list and one link tag which directs to second jsp page. I want to pass the selected item of dropdown list to second jsp. So how can I pass parameter as selected value in href and how can I get the value in second jsp.
<form:select id="Id" path="Id">
<form:options items="${IdList}">
</form:select>
<a href="<%=basepath%>secondpage"> Second Page </a>